smithay/anvil/Cargo.toml

34 lines
991 B
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 20:32:28 +00:00
edition = "2018"
[dependencies]
slog = { version = "2.1.1" }
slog-term = "2.3"
slog-async = "2.2"
2019-02-24 07:50:21 +00:00
rand = "0.6"
glium = { version = "0.23.0", default-features = false }
wayland-server = "0.25.0"
2019-02-24 07:50:21 +00:00
xkbcommon = "0.4.0"
bitflags = "1.2.1"
2020-04-11 17:45:45 +00:00
input = { version = "0.5.0", features = ["udev"], optional = true }
[dependencies.smithay]
path = ".."
default-features = false
2019-02-05 16:26:09 +00:00
features = [ "renderer_glium", "backend_egl", "wayland_frontend" ]
[build-dependencies]
2019-02-24 07:50:21 +00:00
gl_generator = "0.10"
[features]
2020-04-05 18:03:09 +00:00
default = [ "winit", "egl", "udev", "logind" ]
egl = [ "smithay/use_system_lib" ]
winit = [ "smithay/backend_winit" ]
2020-04-11 17:45:45 +00:00
udev = [ "smithay/backend_libinput", "smithay/backend_udev", "smithay/backend_drm_legacy", "smithay/backend_drm_gbm", "smithay/backend_drm_egl", "smithay/backend_session", "input" ]
logind = [ "smithay/backend_session_logind" ]