feat: add required features for k-launcher-egui and update dependencies

This commit is contained in:
2026-03-15 18:40:11 +01:00
parent fe46b7808a
commit 5bb5c8f531

View File

@@ -11,6 +11,10 @@ path = "src/main.rs"
[[bin]]
name = "k-launcher-egui"
path = "src/main_egui.rs"
required-features = ["egui"]
[features]
egui = ["dep:k-launcher-ui-egui"]
[dependencies]
iced = { workspace = true }
@@ -18,7 +22,7 @@ k-launcher-config = { path = "../k-launcher-config" }
k-launcher-kernel = { path = "../k-launcher-kernel" }
k-launcher-os-bridge = { path = "../k-launcher-os-bridge" }
k-launcher-ui = { path = "../k-launcher-ui" }
k-launcher-ui-egui = { path = "../k-launcher-ui-egui" }
k-launcher-ui-egui = { path = "../k-launcher-ui-egui", optional = true }
plugin-apps = { path = "../plugins/plugin-apps" }
plugin-calc = { path = "../plugins/plugin-calc" }
plugin-cmd = { path = "../plugins/plugin-cmd" }