| 1 | [package] |
| 2 | name = "wayland-client" |
| 3 | version = "0.31.8" |
| 4 | documentation = "https://docs.rs/wayland-client/" |
| 5 | repository = "https://github.com/smithay/wayland-rs" |
| 6 | authors = ["Elinor Berger <elinor@safaradeg.net>" ] |
| 7 | license = "MIT" |
| 8 | edition = "2021" |
| 9 | rust-version = "1.65" |
| 10 | categories = ["gui" , "api-bindings" ] |
| 11 | keywords = ["wayland" , "client" ] |
| 12 | description = "Bindings to the standard C implementation of the wayland protocol, client side." |
| 13 | readme = "README.md" |
| 14 | |
| 15 | [dependencies] |
| 16 | wayland-backend = { version = "0.3.8" , path = "../wayland-backend" } |
| 17 | wayland-scanner = { version = "0.31.6" , path = "../wayland-scanner" } |
| 18 | bitflags = "2" |
| 19 | rustix = { version = "0.38.0" , features = ["event" ] } |
| 20 | log = { version = "0.4" , optional = true } |
| 21 | |
| 22 | [dev-dependencies] |
| 23 | wayland-protocols = { path = "../wayland-protocols" , features = ["client" ] } |
| 24 | futures-channel = "0.3.16" |
| 25 | futures-util = "0.3" |
| 26 | tempfile = "3.2" |
| 27 | |
| 28 | [package.metadata.docs.rs] |
| 29 | all-features = true |
| 30 | rustdoc-args = ["--cfg" , "docsrs" ] |
| 31 | |