smithay/anvil/Cargo.toml
Ian Douglas Scott 2848e7f9f9 Update drm, gbm, image; xkbcommon/x11rb deps of Anvil
There's also a new `ash` release, but that seems to require some changes
to use. So I left that for now.
2024-04-22 10:47:42 +02:00

64 lines
2 KiB
TOML

[package]
authors = ["Victor Berger <victor.berger@m4x.org>", "Drakulix (Victoria Brekenfeld)"]
edition = "2021"
license = "MIT"
name = "anvil"
publish = false
version = "0.0.1"
[dependencies]
bitflags = "2.2.1"
fps_ticker = {version = "1.0.0", optional = true}
image = {version = "0.25.1", default-features = false, optional = true}
rand = "0.8"
tracing = { version = "0.1.37", features = ["max_level_trace", "release_max_level_debug"] }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
thiserror = "1"
xcursor = {version = "0.3.3", optional = true}
xkbcommon = "0.7.0"
renderdoc = {version = "0.11.0", optional = true}
smithay-drm-extras = {path = "../smithay-drm-extras", optional = true}
puffin_http = { version = "0.13", optional = true }
profiling = { version = "1.0" }
[dependencies.smithay]
default-features = false
features = ["desktop", "wayland_frontend"]
path = ".."
[dependencies.x11rb]
default-features = false
features = ["composite"]
optional = true
version = "0.13.0"
[build-dependencies]
gl_generator = "0.14"
[features]
debug = ["fps_ticker", "image/png", "renderdoc"]
default = ["egl", "winit", "x11", "udev", "xwayland"]
egl = ["smithay/use_system_lib", "smithay/backend_egl"]
test_all_features = ["default", "debug"]
udev = [
"smithay-drm-extras",
"smithay/backend_libinput",
"smithay/backend_udev",
"smithay/backend_drm",
"smithay/backend_gbm",
"smithay/backend_vulkan",
"smithay/backend_egl",
"smithay/backend_session_libseat",
"image",
"smithay/renderer_gl",
"smithay/renderer_pixman",
"smithay/renderer_multi",
"xcursor",
]
winit = ["smithay/backend_winit", "smithay/backend_drm"]
x11 = ["smithay/backend_x11", "x11rb", "smithay/renderer_gl", "smithay/backend_vulkan"]
xwayland = ["smithay/xwayland", "x11rb", "smithay/x11rb_event_source", "xcursor"]
profile-with-puffin = ["profiling/profile-with-puffin", "puffin_http"]
profile-with-tracy = ["profiling/profile-with-tracy"]
profile-with-tracy-mem = ["profile-with-tracy"]
renderer_sync = []