smithay/Cargo.toml

36 lines
987 B
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-06-24 10:31:36 +02:00
wayland-server = "0.9.9"
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.0", optional = true }
glium = { version = "0.16.0", optional = true, default-features = false }
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-05 19:50:22 +02:00
wayland-protocols = { version = "0.9.9", features = ["unstable_protocols", "server"] }
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]
2017-05-18 22:28:02 +02:00
default = ["backend_winit", "backend_libinput", "renderer_glium"]
2017-05-21 22:40:15 +02:00
backend_winit = ["winit", "wayland-server/dlopen", "wayland-client/dlopen"]
2017-03-18 17:26:22 +01:00
renderer_glium = ["glium"]
2017-04-15 00:23:03 +02:00
backend_libinput = ["input"]