forked from swaywm/wlroots-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (34 loc) · 1011 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[workspace]
members = ["wlroots-sys"]
[package]
name = "wlroots"
version = "0.0.0"
authors = ["Timidger <[email protected]>"]
description = "Rust wrapping for Wayland compositor library wlroots"
keywords = ["wayland", "compositor", "bindings"]
categories = ["external-ffi-bindings", "gui"]
license = "MIT"
exclude = [".travis.yml"]
build = "build.rs"
[badges]
travis-ci = { repository = "way-cooler/wlroots-rs/" }
[dependencies]
libc = "^0.2.*"
rust-ini = "0.10.0"
wlroots-sys = { path = "wlroots-sys", default-features = false }
wayland-sys = { version = "0.9.*", features = ["client", "dlopen", "server",] }
lazy_static = "0.2"
xkbcommon = "0.3"
bitflags = "1.0"
[dev-dependencies]
wayland-client = { version = "0.12.*" }
byteorder = "1"
tempfile = "2"
[build-dependencies]
gl_generator = "0.5.0"
[features]
default = ["static", "libcap", "systemd", "elogind"]
static = ["wlroots-sys/static"]
libcap = ["wlroots-sys/libcap"]
systemd = ["wlroots-sys/systemd"]
elogind = ["wlroots-sys/elogind"]