Files
barbar/Cargo.toml
T
2026-09-12 21:50:09 +01:00

27 lines
988 B
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"] }
chrono = "0.4"
toml = "1.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
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"