smithay/Cargo.toml

46 lines
1.5 KiB
TOML
Raw Normal View History

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