2026-04-04 18:16:53 +02:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "3"
|
|
|
|
|
members = [
|
|
|
|
|
"crates/wayray-protocol",
|
2026-04-07 22:29:19 +02:00
|
|
|
"crates/wayray-wm-protocol",
|
2026-04-04 18:16:53 +02:00
|
|
|
"crates/wrsrvd",
|
|
|
|
|
"crates/wrclient",
|
|
|
|
|
"crates/wradm",
|
2026-04-07 22:29:19 +02:00
|
|
|
"crates/wr-wm-tiling",
|
2026-04-04 18:16:53 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[workspace.package]
|
2026-03-28 18:53:00 +01:00
|
|
|
edition = "2024"
|
2026-04-04 18:16:53 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
|
license = "MPL-2.0"
|
2026-03-28 18:53:00 +01:00
|
|
|
|
2026-04-04 18:16:53 +02:00
|
|
|
[workspace.dependencies]
|
|
|
|
|
wayray-protocol = { path = "crates/wayray-protocol" }
|
2026-04-07 22:29:19 +02:00
|
|
|
wayray-wm-protocol = { path = "crates/wayray-wm-protocol" }
|
2026-04-04 18:16:53 +02:00
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
|
miette = { version = "7", features = ["fancy"] }
|
|
|
|
|
thiserror = "2"
|
2026-04-07 15:35:48 +02:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
postcard = { version = "1", features = ["alloc"] }
|
|
|
|
|
zstd = "0.13"
|
2026-04-07 16:54:01 +02:00
|
|
|
quinn = "0.11"
|
|
|
|
|
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
|
|
|
|
|
rcgen = "0.13"
|
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "sync"] }
|