mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-27 01:13:09 +00:00
- Remove nonexistent TextInputHandler trait impl - Add missing cursor_position_hint to PointerConstraintsHandler - Rewrite winit/drm backends: ListeningSocketSource + insert_client for per-client WeftClientState; Generic<Display<D>> for dispatch - Remove calloop direct dep; use via smithay::reexports::calloop - Remove unused imports in input.rs
36 lines
862 B
TOML
36 lines
862 B
TOML
[package]
|
|
name = "weft-compositor"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "weft-compositor"
|
|
path = "src/main.rs"
|
|
|
|
# Features available on all build platforms.
|
|
[dependencies]
|
|
smithay = { version = "0.7", default-features = false, features = [
|
|
"backend_egl",
|
|
"backend_winit",
|
|
"renderer_gl",
|
|
"wayland_frontend",
|
|
"desktop",
|
|
] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
anyhow = "1"
|
|
|
|
# DRM/KMS and hardware input depend on Linux kernel interfaces; compile only on Linux.
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
smithay = { version = "0.7", default-features = false, features = [
|
|
"backend_drm",
|
|
"backend_gbm",
|
|
"backend_libinput",
|
|
"backend_udev",
|
|
"backend_session_libseat",
|
|
] }
|