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