| 1 | [package] |
| 2 | name = "wayland-sys" |
| 3 | version = "0.31.6" |
| 4 | repository = "https://github.com/smithay/wayland-rs" |
| 5 | documentation = "https://docs.rs/wayland-sys/" |
| 6 | authors = ["Elinor Berger <elinor@safaradeg.net>" ] |
| 7 | 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." |
| 8 | license = "MIT" |
| 9 | categories = ["external-ffi-bindings" ] |
| 10 | edition = "2021" |
| 11 | rust-version = "1.65" |
| 12 | readme = "README.md" |
| 13 | |
| 14 | [dependencies] |
| 15 | dlib = { version = "0.5.1" , optional = true } |
| 16 | libc = { version = "0.2" , optional = true } |
| 17 | once_cell = { version = "1.0" , optional = true } |
| 18 | memoffset = { version = "0.9" , optional = true } |
| 19 | log = { version = "0.4" , optional = true } |
| 20 | |
| 21 | [build-dependencies] |
| 22 | pkg-config = "0.3.7" |
| 23 | |
| 24 | [features] |
| 25 | dlopen = ["once_cell" ] |
| 26 | client = ["dep:dlib" , "dep:log" ] |
| 27 | cursor = ["client" ] |
| 28 | egl = ["client" ] |
| 29 | server = ["libc" , "memoffset" , "dep:dlib" , "dep:log" ] |
| 30 | |
| 31 | [package.metadata.docs.rs] |
| 32 | all-features = true |
| 33 | rustdoc-args = ["--cfg" , "docsrs" ] |
| 34 | |