refac: workspace

This commit is contained in:
2026-09-07 00:24:19 +01:00
parent c82b470b9e
commit bc5a26b728
11 changed files with 444 additions and 72 deletions
+11 -4
View File
@@ -1,10 +1,17 @@
[package]
name = "barbar"
[workspace]
members = ["crates/*"]
[workspace.package]
version = "0.1.0"
edition = "2021"
[dependencies]
[workspace.dependencies]
iced = { version = "0.14", default-features = false, features = ["wgpu", "wayland", "crisp", "web-colors", "thread-pool", "advanced", "tokio"] }
iced_layershell = { version = "0.19", default-features = false }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
chrono = "0.4"
chrono = "0.4"
# Optimize all dependencies even in dev builds; workspace members keep dev
# defaults (opt-level 0) and release settings under --release.
[profile.dev.package."*"]
opt-level = 3