feat: restructure k-launcher workspace and add core functionality

- Updated Cargo.toml to include a new k-launcher crate and reorganized workspace members.
- Introduced a README.md file detailing the project philosophy, architecture, and technical specifications.
- Implemented a new Kernel struct in k-launcher-kernel for managing plugins and search functionality.
- Created a Plugin trait for plugins to implement, allowing for asynchronous search operations.
- Developed k-launcher-ui with an Iced-based UI for user interaction, including search input and result display.
- Added AppsPlugin and CalcPlugin to handle application launching and basic calculations, respectively.
- Established a theme module for UI styling, focusing on an Aero aesthetic.
- Removed unnecessary main.rs files from plugin crates, streamlining the project structure.
This commit is contained in:
2026-03-15 16:20:36 +01:00
parent 4c3be17b77
commit 1ac9dde347
19 changed files with 6077 additions and 28 deletions

View File

@@ -1,9 +1,19 @@
[workspace]
members = ["crates/k-launcher-kernel", "crates/k-launcher-os-bridge", "crates/k-launcher-ui", "crates/plugins/plugin-apps", "crates/plugins/plugin-calc", "crates/plugins/plugin-files"]
members = [
"crates/k-launcher",
"crates/k-launcher-kernel",
"crates/k-launcher-os-bridge",
"crates/k-launcher-ui",
"crates/plugins/plugin-apps",
"crates/plugins/plugin-calc",
"crates/plugins/plugin-files",
]
resolver = "2"
[workspace.dependencies]
iced = { version = "0.14", features = ["canvas", "tokio", "wgpu"] }
tokio = { version = "1.35", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
iced = { version = "0.14", features = ["canvas", "image", "svg", "tokio", "wgpu"] }
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1" # For high-performance logging
tokio = { version = "1.35", features = ["full"] }
tracing = "0.1"