smithay/Cargo.toml

51 lines
1.8 KiB
TOML
Raw Normal View History

2017-01-20 08:54:05 +00:00
[package]
name = "smithay"
version = "0.1.0"
2017-10-01 20:57:02 +00:00
authors = ["Victor Berger <victor.berger@m4x.org>", "Drakulix (Victor Brekenfeld)"]
2017-03-24 09:24:07 +00:00
license = "MIT"
2017-10-01 20:57:02 +00:00
description = "Smithay is a library for writing wayland compositors."
repository = "https://github.com/Smithay/smithay"
2017-01-20 08:54:05 +00:00
[workspace]
members = [ "anvil" ]
2017-01-20 08:54:05 +00:00
[dependencies]
wayland-server = "0.21.4"
wayland-sys = "0.21.3"
2018-11-18 17:08:37 +00:00
wayland-commons = "0.21.1"
2018-09-24 22:30:39 +00:00
nix = "0.11"
xkbcommon = "0.2.1"
tempfile = "2.1.5"
2018-09-24 22:30:39 +00:00
slog = "2.1.1"
2017-12-21 15:01:16 +00:00
slog-stdlog = "3.0.2"
2017-05-18 20:28:02 +00:00
libloading = "0.4.0"
wayland-client = { version = "0.21.1", features = ["egl"], optional = true }
winit = { version = "0.18.0", optional = true }
2017-12-21 15:23:34 +00:00
drm = { version = "^0.3.1", optional = true }
2018-01-07 19:23:29 +00:00
gbm = { version = "^0.4.0", optional = true, default-features = false, features = ["drm-support"] }
2017-12-21 15:01:16 +00: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-23 23:10:00 +00:00
dbus = { version = "0.6.1", optional = true }
2018-02-01 13:57:04 +00:00
systemd = { version = "^0.2.0", optional = true }
wayland-protocols = { version = "0.21.3", features = ["unstable_protocols", "native_server"] }
2017-10-01 17:21:12 +00:00
image = "0.17.0"
2017-09-18 14:58:20 +00:00
error-chain = "0.11.0"
2017-12-09 16:32:22 +00:00
lazy_static = "1.0.0"
2017-02-22 10:00:03 +00:00
2017-05-18 20:28:02 +00:00
[build-dependencies]
gl_generator = { version = "0.9", optional = true }
2017-05-18 20:28:02 +00:00
2017-03-07 10:53:57 +00:00
[features]
2018-04-30 19:28:17 +00:00
default = ["backend_winit", "backend_drm", "backend_libinput", "backend_udev", "renderer_glium", "xwayland"]
backend_winit = ["winit", "wayland-server/dlopen", "wayland-client/dlopen", "backend_egl"]
backend_drm = ["drm", "backend_egl"]
backend_egl = ["gl_generator"]
2017-04-14 22:23:03 +00:00
backend_libinput = ["input"]
2017-10-01 17:21:12 +00:00
backend_session = []
backend_session_udev = ["udev", "backend_session"]
2018-01-23 23:10:00 +00:00
backend_session_logind = ["dbus", "systemd", "backend_session"]
backend_udev = ["udev", "backend_drm", "backend_session_udev"]
renderer_gl = ["gl_generator"]
renderer_glium = ["renderer_gl", "glium"]
2018-09-24 22:30:39 +00:00
xwayland = []