niri/Cargo.toml
Ivan Molodetskikh e09a6d6392 Add trivial Mutter ServiceChannel impl
Makes xdp-gnome work.
2023-08-27 10:29:06 +04:00

46 lines
1.2 KiB
TOML

[package]
name = "niri"
version = "0.1.0"
description = "A scrollable-tiling Wayland compositor"
authors = ["Ivan Molodetskikh <yalterz@gmail.com>"]
license = "GPL-3.0-or-later"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.72" }
bitflags = "2.3.3"
clap = { version = "4.3.21", features = ["derive"] }
keyframe = { version = "1.1.1", default-features = false }
profiling = "1.0.9"
sd-notify = "0.4.1"
smithay-drm-extras = { version = "0.1.0", path = "../smithay/smithay-drm-extras" }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracy-client = { version = "0.15.2", default-features = false }
xcursor = "0.3.4"
zbus = { version = "3.14.1" }
[dependencies.smithay]
git = "https://github.com/Smithay/smithay"
default-features = false
features = [
"backend_drm",
"backend_egl",
"backend_gbm",
"backend_libinput",
"backend_session_libseat",
"backend_udev",
"backend_winit",
"desktop",
"renderer_gl",
"renderer_multi",
"use_system_lib",
"wayland_frontend",
]
[features]
profile-with-tracy = ["profiling/profile-with-tracy", "tracy-client/default"]
[profile.release]
overflow-checks = true