1[package]
2name = "wayland-scanner"
3version = "0.31.1"
4authors = ["Elinor Berger <elinor@safaradeg.net>"]
5repository = "https://github.com/smithay/wayland-rs"
6documentation = "https://docs.rs/wayland-scanner/"
7description = "Wayland Scanner for generating rust APIs from XML wayland protocol files."
8license = "MIT"
9categories = ["gui", "api-bindings"]
10keywords = ["wayland", "codegen"]
11edition = "2021"
12rust-version = "1.65"
13readme = "README.md"
14
15[lib]
16proc-macro = true
17
18[dependencies]
19proc-macro2 = "1.0.11"
20quote = "1.0"
21quick-xml = "0.31"
22
23[dev-dependencies]
24similar = "2"
25
26[package.metadata.docs.rs]
27all-features = true
28rustdoc-args = ["--cfg", "docsrs"]
29