wayray/Cargo.toml

33 lines
915 B
TOML
Raw Normal View History

[workspace]
resolver = "3"
members = [
"crates/wayray-protocol",
"crates/wayray-wm-protocol",
"crates/wrsrvd",
"crates/wrclient",
"crates/wradm",
"crates/wr-wm-tiling",
"crates/wrsessd",
"crates/wrlogin",
]
[workspace.package]
edition = "2024"
version = "0.1.0"
license = "MPL-2.0"
[workspace.dependencies]
wayray-protocol = { path = "crates/wayray-protocol" }
wayray-wm-protocol = { path = "crates/wayray-wm-protocol" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
miette = { version = "7", features = ["fancy"] }
thiserror = "2"
serde = { version = "1", features = ["derive"] }
postcard = { version = "1", features = ["alloc"] }
zstd = "0.13"
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"] }