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