mirror of
https://github.com/CloudNebulaProject/wayray.git
synced 2026-04-10 13:10:41 +00:00
Message types for control, display, and input channels with serde derives. Length-prefixed postcard codec with encode/decode/framing. Seven round-trip tests covering all message types and edge cases.
23 lines
554 B
TOML
23 lines
554 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"
|
|
serde = { version = "1", features = ["derive"] }
|
|
postcard = { version = "1", features = ["alloc"] }
|
|
zstd = "0.13"
|