smithay/Cargo.toml

51 lines
1.8 KiB
TOML
Raw Normal View History

2017-01-20 09:54:05 +01:00
[package]
name = "smithay"
version = "0.1.0"
2017-10-01 22:57:02 +02:00
authors = ["Victor Berger <victor.berger@m4x.org>", "Drakulix (Victor Brekenfeld)"]
2017-03-24 10:24:07 +01:00
license = "MIT"
2017-10-01 22:57:02 +02:00
description = "Smithay is a library for writing wayland compositors."
repository = "https://github.com/Smithay/smithay"
2017-01-20 09:54:05 +01:00
[dependencies]
wayland-server = "0.12.5"
wayland-sys = "0.12.5"
nix = "0.9.0"
xkbcommon = "0.2.1"
tempfile = "2.1.5"
2017-12-21 16:01:16 +01:00
slog = { version = "2.1.1" }
slog-stdlog = "3.0.2"
2017-05-18 22:28:02 +02:00
libloading = "0.4.0"
wayland-client = { version = "0.12.5", optional = true }
winit = { version = "0.10.0", optional = true }
2017-12-21 16:23:34 +01:00
drm = { version = "^0.3.1", optional = true }
2018-01-07 20:23:29 +01:00
gbm = { version = "^0.4.0", optional = true, default-features = false, features = ["drm-support"] }
2017-12-21 16:01:16 +01:00
glium = { version = "0.19.0", optional = true, default-features = false }
input = { version = "0.4.0", optional = true }
udev = { version = "0.2.0", optional = true }
2018-01-24 00:10:00 +01:00
dbus = { version = "0.6.1", optional = true }
systemd = { git = "https://github.com/Drakulix/rust-systemd", branch = "feature/login_functions", optional = true }
wayland-protocols = { version = "0.12.5", features = ["unstable_protocols", "server"] }
2017-10-01 19:21:12 +02:00
image = "0.17.0"
2017-09-18 16:58:20 +02:00
error-chain = "0.11.0"
2017-12-09 17:32:22 +01:00
lazy_static = "1.0.0"
2017-02-22 11:00:03 +01:00
2017-05-18 22:28:02 +02:00
[build-dependencies]
2017-12-21 16:01:16 +01:00
gl_generator = "0.7"
2017-05-18 22:28:02 +02:00
2017-02-22 11:00:03 +01:00
[dev-dependencies]
2017-12-21 16:01:16 +01:00
slog-term = "2.3"
slog-async = "2.2"
rand = "0.3"
2017-10-01 19:21:12 +02:00
ctrlc = { version = "3.0", features = ["termination"] }
2017-03-07 11:53:57 +01:00
[features]
2018-01-24 00:10:00 +01:00
default = ["backend_winit", "backend_drm", "backend_libinput", "backend_udev", "renderer_glium", "backend_session_logind"]
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"]
2017-10-01 19:21:12 +02:00
backend_session = []
backend_session_udev = ["udev", "backend_session"]
2018-01-24 00:10:00 +01:00
backend_session_logind = ["dbus", "systemd", "backend_session"]
backend_udev = ["udev", "backend_drm", "backend_session_udev"]
renderer_glium = ["glium"]