mirror of
https://github.com/CloudNebulaProject/wayray.git
synced 2026-04-10 21:20:40 +00:00
Workspace: wrsrvd, wrclient, wayray-protocol, wradm under crates/. Smithay configured with default-features=false, portable features only. Implements ADR-007 project structure.
20 lines
440 B
TOML
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"
|