smithay/Cargo.toml

68 lines
2.7 KiB
TOML
Raw Normal View History

2017-01-20 08:54:05 +00:00
[package]
name = "smithay"
2019-01-03 09:52:15 +00:00
version = "0.2.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"
2018-12-15 20:32:28 +00:00
edition = "2018"
2017-01-20 08:54:05 +00:00
[workspace]
members = [ "anvil" ]
2017-01-20 08:54:05 +00:00
[dependencies]
wayland-server = { version = "0.25.0", optional = true }
wayland-commons = { version = "0.25.0", optional = true }
wayland-sys = { version = "0.25.0", optional = true }
calloop = "0.5.1"
2019-05-19 17:32:08 +00:00
bitflags = "1"
2020-04-15 08:25:31 +00:00
nix = "0.17"
2019-02-24 07:50:21 +00:00
xkbcommon = "0.4.0"
tempfile = "3.0"
2020-04-15 08:25:31 +00:00
slog = "2"
slog-stdlog = "4"
libloading = "0.6.0"
wayland-egl = { version = "0.25.0", optional = true }
winit = { version = "0.22.0", optional = true }
2019-08-23 11:58:02 +00:00
drm = { version = "^0.4.0", git = "https://github.com/drakulix/drm-rs", branch = "develop", optional = true }
gbm = { version = "^0.6.0", git = "https://github.com/drakulix/gbm.rs", branch = "develop", optional = true, default-features = false, features = ["drm-support"] }
2020-04-15 08:25:31 +00:00
glium = { version = "0.27.0", optional = true, default-features = false }
2020-04-11 17:45:45 +00:00
input = { version = "0.5", default-features = false, optional = true }
udev = { version = "0.4", optional = true }
dbus = { version = "0.8", optional = true }
2019-02-24 07:50:21 +00:00
systemd = { version = "0.4.0", optional = true }
wayland-protocols = { version = "0.25.0", features = ["unstable_protocols", "server"], optional = true }
2020-04-15 08:25:31 +00:00
image = { version = "0.23.0", optional = true }
2017-12-09 16:32:22 +00:00
lazy_static = "1.0.0"
thiserror = "1"
# TODO: remove as soon as drm-rs provides an error implementing Error
2020-04-11 17:45:45 +00:00
failure = { version = "0.1", optional = true }
2017-02-22 10:00:03 +00:00
2018-12-05 21:44:30 +00:00
[dev-dependencies]
slog-term = "2.3"
2017-05-18 20:28:02 +00:00
[build-dependencies]
2020-04-15 08:25:31 +00:00
gl_generator = { version = "0.14", optional = true }
2017-05-18 20:28:02 +00:00
2017-03-07 10:53:57 +00:00
[features]
2020-04-05 18:03:09 +00:00
default = ["backend_winit", "backend_drm_legacy", "backend_drm_gbm", "backend_drm_egl", "backend_libinput", "backend_udev", "backend_session_logind", "renderer_glium", "xwayland", "wayland_frontend"]
backend_winit = ["winit", "wayland-server/dlopen", "backend_egl", "wayland-egl", "renderer_gl", "use_system_lib"]
2020-04-11 17:45:45 +00:00
backend_drm = ["drm", "failure"]
backend_drm_legacy = ["backend_drm"]
2019-02-05 16:26:09 +00:00
backend_drm_gbm = ["backend_drm", "gbm", "image"]
backend_drm_egl = ["backend_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_udev = ["udev"]
2018-01-23 23:10:00 +00:00
backend_session_logind = ["dbus", "systemd", "backend_session"]
renderer_gl = ["gl_generator"]
renderer_glium = ["renderer_gl", "glium"]
use_system_lib = ["wayland_frontend", "wayland-sys", "wayland-server/use_system_lib"]
2019-02-05 16:26:09 +00:00
wayland_frontend = ["wayland-server", "wayland-commons", "wayland-protocols"]
xwayland = ["wayland_frontend"]
2018-12-15 20:18:54 +00:00
[[example]]
name = "raw_legacy_drm"
2019-01-03 09:52:15 +00:00
required-features = ["backend_drm_legacy"]