20 lines
455 B
TOML
20 lines
455 B
TOML
[package]
|
|
name = "k-launcher-plugin-host"
|
|
version = "0.2.1"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "k_launcher_plugin_host"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
k-launcher-domain = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["process", "io-util", "sync", "time"] }
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|