1[package]
2name = "wayland-sys"
3version = "0.31.1"
4repository = "https://github.com/smithay/wayland-rs"
5documentation = "https://docs.rs/wayland-sys/"
6authors = ["Elinor Berger <elinor@safaradeg.net>"]
7description = "FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings."
8license = "MIT"
9categories = ["external-ffi-bindings"]
10edition = "2018"
11rust-version = "1.59"
12readme = "README.md"
13
14[dependencies]
15dlib = { version = "0.5.1" }
16libc = { version = "0.2", optional = true }
17once_cell = { version = "1.0", optional = true }
18memoffset = { version = "0.9", optional = true }
19log = "0.4"
20
21[build-dependencies]
22pkg-config = "0.3.7"
23
24[features]
25dlopen = ["once_cell"]
26client = []
27cursor = ["client"]
28egl = ["client"]
29server = ["libc", "memoffset"]
30
31[package.metadata.docs.rs]
32all-features = true
33rustdoc-args = ["--cfg", "docsrs"]
34