smithay/anvil/Cargo.toml

65 lines
2 KiB
TOML
Raw Permalink Normal View History

[package]
2022-06-23 18:10:40 +02:00
authors = ["Victor Berger <victor.berger@m4x.org>", "Drakulix (Victoria Brekenfeld)"]
2023-03-29 22:44:49 +02:00
edition = "2021"
license = "MIT"
2022-08-25 16:24:41 +02:00
name = "anvil"
publish = false
2022-08-25 16:24:41 +02:00
version = "0.0.1"
[dependencies]
bitflags = "2.2.1"
2022-08-25 16:24:41 +02:00
fps_ticker = {version = "1.0.0", optional = true}
image = {version = "0.25.1", default-features = false, optional = true}
2021-07-24 20:30:00 +02:00
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"] }
2022-08-25 16:24:41 +02:00
thiserror = "1"
xcursor = {version = "0.3.3", optional = true}
2024-06-20 06:40:14 +02:00
xkbcommon = "0.8.0"
renderdoc = {version = "0.11.0", optional = true}
2023-03-29 22:44:49 +02:00
smithay-drm-extras = {path = "../smithay-drm-extras", optional = true}
2023-09-24 10:28:32 +02:00
puffin_http = { version = "0.13", optional = true }
2023-06-26 08:42:41 +02:00
profiling = { version = "1.0" }
[dependencies.smithay]
default-features = false
features = ["desktop", "wayland_frontend"]
2022-08-25 16:24:41 +02:00
path = ".."
[dependencies.x11rb]
2022-08-25 16:24:41 +02:00
default-features = false
features = ["composite"]
optional = true
version = "0.13.0"
[build-dependencies]
2020-04-15 10:25:31 +02:00
gl_generator = "0.14"
[features]
debug = ["fps_ticker", "image/png", "renderdoc"]
default = ["egl", "winit", "x11", "udev", "xwayland"]
2022-08-25 16:24:41 +02:00
egl = ["smithay/use_system_lib", "smithay/backend_egl"]
test_all_features = ["default", "debug"]
2022-08-25 16:24:41 +02:00
udev = [
2023-03-29 22:44:49 +02:00
"smithay-drm-extras",
2022-08-25 16:24:41 +02:00
"smithay/backend_libinput",
"smithay/backend_udev",
"smithay/backend_drm",
"smithay/backend_gbm",
"smithay/backend_vulkan",
2022-08-25 16:24:41 +02:00
"smithay/backend_egl",
"smithay/backend_session_libseat",
2022-08-25 16:24:41 +02:00
"image",
"smithay/renderer_gl",
"smithay/renderer_pixman",
2022-08-25 16:24:41 +02:00
"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"]
2023-06-26 08:42:41 +02:00
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 = []