17 lines
407 B
TOML
17 lines
407 B
TOML
[package]
|
|
name = "k-launcher-plugin-host"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "k_launcher_plugin_host"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
k-launcher-kernel = { path = "../k-launcher-kernel" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["process", "io-util", "sync"] }
|
|
tracing = { workspace = true }
|