28 lines
754 B
TOML
28 lines
754 B
TOML
[workspace]
|
|
members = [
|
|
"crates/k-launcher",
|
|
"crates/k-launcher-config",
|
|
"crates/k-launcher-kernel",
|
|
"crates/k-launcher-os-bridge",
|
|
"crates/k-launcher-plugin-host",
|
|
"crates/k-launcher-ui",
|
|
"crates/plugins/plugin-apps",
|
|
"crates/plugins/plugin-calc",
|
|
"crates/plugins/plugin-cmd",
|
|
"crates/plugins/plugin-files",
|
|
"crates/k-launcher-ui-egui",
|
|
"crates/plugins/plugin-url",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
async-trait = "0.1"
|
|
dirs = "6.0"
|
|
futures = "0.3"
|
|
iced = { version = "0.14", features = ["image", "svg", "tokio", "tiny-skia"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1.35", features = ["rt-multi-thread", "macros"] }
|
|
toml = "1.0"
|
|
tracing = "0.1"
|