19 lines
359 B
TOML
19 lines
359 B
TOML
[package]
|
|
name = "plugin-apps"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "plugin_apps"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
k-launcher-kernel = { path = "../../k-launcher-kernel" }
|
|
serde = { workspace = true }
|
|
serde_json = "1.0"
|
|
tokio = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
xdg = "3"
|