2026-04-04 18:16:53 +02:00
|
|
|
[package]
|
|
|
|
|
name = "wrsrvd"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
version.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
|
2026-04-07 18:44:19 +02:00
|
|
|
[features]
|
|
|
|
|
# Enable the Winit development backend (requires display server).
|
|
|
|
|
# Build with: cargo build -p wrsrvd --features winit
|
|
|
|
|
winit = ["smithay/renderer_gl", "smithay/backend_winit"]
|
|
|
|
|
|
2026-04-04 18:16:53 +02:00
|
|
|
[dependencies]
|
|
|
|
|
wayray-protocol.workspace = true
|
|
|
|
|
tracing.workspace = true
|
|
|
|
|
tracing-subscriber.workspace = true
|
|
|
|
|
miette.workspace = true
|
|
|
|
|
thiserror.workspace = true
|
2026-04-07 16:54:01 +02:00
|
|
|
serde.workspace = true
|
2026-04-07 18:44:19 +02:00
|
|
|
ctrlc = "3"
|
|
|
|
|
quinn.workspace = true
|
|
|
|
|
rustls.workspace = true
|
|
|
|
|
rcgen.workspace = true
|
|
|
|
|
tokio.workspace = true
|
2026-04-04 18:16:53 +02:00
|
|
|
|
|
|
|
|
smithay = { version = "0.7", default-features = false, features = [
|
|
|
|
|
"wayland_frontend",
|
|
|
|
|
"desktop",
|
2026-04-07 16:29:32 +02:00
|
|
|
"renderer_pixman",
|
2026-04-04 18:16:53 +02:00
|
|
|
] }
|