mirror of
https://github.com/CloudNebulaProject/wayray.git
synced 2026-04-10 13:10:41 +00:00
Restructure wrsrvd to support two backends: a headless PixmanRenderer (default) for running without a display server, and the existing Winit backend (via --backend winit). The render logic is split into per-backend modules, and the old render.rs is removed.
21 lines
449 B
TOML
21 lines
449 B
TOML
[package]
|
|
name = "wrsrvd"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
wayray-protocol.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
miette.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
smithay = { version = "0.7", default-features = false, features = [
|
|
"wayland_frontend",
|
|
"desktop",
|
|
"renderer_gl",
|
|
"renderer_pixman",
|
|
"backend_winit",
|
|
] }
|
|
ctrlc = "3"
|