smithay/Cargo.toml

46 lines
1.5 KiB
TOML
Raw Normal View History

2017-01-20 08:54:05 +00:00
[package]
name = "smithay"
version = "0.1.0"
authors = ["Victor Berger <victor.berger@thalesgroup.com>"]
2017-03-24 09:24:07 +00:00
license = "MIT"
2017-01-20 08:54:05 +00:00
[dependencies]
2017-09-19 15:02:49 +00:00
wayland-server = "0.10.1"
2017-02-20 21:32:03 +00:00
nix = "0.7.0"
xkbcommon = "0.2.1"
tempfile = "2.1.5"
slog = { version = "2.0.0" }
slog-stdlog = "2.0.0-0.2"
2017-05-18 20:28:02 +00:00
libloading = "0.4.0"
2017-06-24 08:31:36 +00:00
wayland-client = { version = "0.9.9", optional = true }
winit = { version = "0.7.5", optional = true }
drm = { version = "0.2.1", optional = true }
gbm = { version = "0.2.1", optional = true }
glium = { version = "0.17.1", optional = true, default-features = false }
2017-06-24 08:31:36 +00:00
input = { version = "0.2.0", optional = true }
2017-03-11 08:15:17 +00:00
clippy = { version = "*", optional = true }
2017-06-10 20:59:59 +00:00
rental = "0.4.11"
2017-09-19 15:02:49 +00:00
wayland-protocols = { version = "0.10.1", features = ["unstable_protocols", "server"] }
image = "0.15.0"
2017-02-22 10:00:03 +00:00
2017-05-18 20:28:02 +00:00
[build-dependencies]
gl_generator = "0.5"
2017-02-22 10:00:03 +00:00
[dev-dependencies]
2017-06-11 21:03:25 +00:00
slog-term = "2.0"
slog-async = "2.0"
rand = "0.3"
2017-03-07 10:53:57 +00:00
[features]
default = ["backend_winit", "backend_drm", "backend_libinput", "renderer_glium"]
2017-05-21 20:40:15 +00:00
backend_winit = ["winit", "wayland-server/dlopen", "wayland-client/dlopen"]
backend_drm = ["drm", "gbm"]
2017-04-14 22:23:03 +00:00
backend_libinput = ["input"]
renderer_glium = ["glium"]
[replace]
"wayland-server:0.9.9" = { git = "https://github.com/Drakulix/wayland-rs", branch = "raw_handler_access"}
"wayland-protocols:0.9.9" = { git = "https://github.com/Drakulix/wayland-rs", branch = "raw_handler_access"}
"wayland-client:0.9.9" = { git = "https://github.com/Drakulix/wayland-rs", branch = "raw_handler_access"}
2017-09-15 13:52:00 +00:00
"drm:0.2.1" = { git = "https://github.com/Drakulix/drm-rs", branch = "future" }