Files
barbar/Cargo.toml
T
2026-09-14 00:55:25 +01:00

30 lines
1.1 KiB
TOML

[workspace]
members = ["crates/core", "crates/common", "crates/modules", "crates/services"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
[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"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = "0.4"
toml = "1.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
thiserror = "2"
clap = { version = "4.6.6", features = ["derive", "help"] }
# Dependencies get light optimization in dev so wgpu/iced stay usable at
# runtime without paying full O3 codegen on every cold build; workspace
# members keep dev defaults (opt-level 0). Line-tables-only debuginfo keeps
# the dev binary and target/ from ballooning.
[profile.dev.package."*"]
opt-level = 1
debug = "line-tables-only"