wayray/Cargo.toml
Till Wegmueller 4e08dfb5a9 Set up Cargo workspace with four crates
Workspace: wrsrvd, wrclient, wayray-protocol, wradm under crates/.
Smithay configured with default-features=false, portable features only.
Implements ADR-007 project structure.
2026-04-04 18:16:53 +02:00

20 lines
440 B
TOML

[workspace]
resolver = "3"
members = [
"crates/wayray-protocol",
"crates/wrsrvd",
"crates/wrclient",
"crates/wradm",
]
[workspace.package]
edition = "2024"
version = "0.1.0"
license = "MPL-2.0"
[workspace.dependencies]
wayray-protocol = { path = "crates/wayray-protocol" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
miette = { version = "7", features = ["fancy"] }
thiserror = "2"