wayland-sys 0.31.1

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.
Documentation
[package]
name = "wayland-sys"
version = "0.31.1"
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://docs.rs/wayland-sys/"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
description = "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."
license = "MIT"
categories = ["external-ffi-bindings"]
edition = "2018"
rust-version = "1.59"
readme = "README.md"

[dependencies]
dlib = { version = "0.5.1" }
libc = { version = "0.2", optional = true }
once_cell = { version = "1.0", optional = true }
memoffset = { version = "0.9", optional = true }
log = "0.4"

[build-dependencies]
pkg-config = "0.3.7"

[features]
dlopen = ["once_cell"]
client = []
cursor = ["client"]
egl = ["client"]
server = ["libc", "memoffset"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]