22 lines
373 B
TOML
22 lines
373 B
TOML
[package]
|
|
name = "plugin-apps"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "plugin_apps"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "plugin-apps"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
k-launcher-kernel = { path = "../../k-launcher-kernel" }
|
|
libc = "0.2"
|
|
serde = { workspace = true }
|
|
serde_json = "1.0"
|
|
tokio = { workspace = true }
|
|
xdg = "2"
|