smithay/anvil/Cargo.toml

49 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "anvil"
version = "0.0.1"
authors = ["Victor Berger <victor.berger@m4x.org>", "Drakulix (Victor Brekenfeld)"]
license = "MIT"
publish = false
2018-12-15 21:32:28 +01:00
edition = "2018"
[dependencies]
2020-04-25 09:51:35 +02:00
bitflags = "1.2.1"
thiserror = "1"
xcursor = { version = "0.3.3", optional = true }
2022-06-17 10:22:34 +02:00
image = { version = "0.24.0", default-features = false, optional = true }
fps_ticker = { version = "1.0.0", optional = true }
2021-07-24 20:30:00 +02:00
rand = "0.8"
slog = { version = "2.1.1" }
slog-term = "2.8"
slog-async = "2.2"
slog-stdlog = "4.1.0"
slog-scope = "4.4.0"
2019-02-24 08:50:21 +01:00
xkbcommon = "0.4.0"
[dependencies.smithay]
path = ".."
default-features = false
2021-11-28 01:23:25 +01:00
features = [ "desktop", "wayland_frontend", "slog-stdlog" ]
[dependencies.x11rb]
optional = true
2022-06-17 10:22:34 +02:00
version = "0.10.0"
default-features = false
features = [ "composite" ]
[build-dependencies]
2020-04-15 10:25:31 +02:00
gl_generator = "0.14"
[features]
2022-05-20 18:02:54 +02:00
default = [ "egl", "winit", "x11", "udev", "logind", "xwayland" ]
2021-04-29 00:01:40 +02:00
egl = [ "smithay/use_system_lib", "smithay/backend_egl" ]
winit = [ "smithay/backend_winit" ]
udev = [ "smithay/backend_libinput", "smithay/backend_udev", "smithay/backend_drm", "smithay/backend_gbm", "smithay/backend_egl", "smithay/backend_session", "image", "smithay/renderer_gl", "smithay/renderer_multi", "xcursor" ]
logind = [ "smithay/backend_session_logind" ]
elogind = ["logind", "smithay/backend_session_elogind" ]
2021-06-15 23:35:16 +02:00
libseat = ["smithay/backend_session_libseat" ]
2022-05-20 18:02:54 +02:00
xwayland = [ "smithay/xwayland", "x11rb", "smithay/x11rb_event_source" ]
2021-10-17 20:46:00 +02:00
x11 = [ "smithay/backend_x11", "x11rb", "egl", "smithay/renderer_gl" ]
debug = [ "fps_ticker", "image/png" ]
test_all_features = ["default", "debug"]