1 | [package] |
2 | name = "zbus_xml" |
3 | version = "4.0.0" |
4 | authors = ["Zeeshan Ali Khan <zeeshanak@gnome.org>" ] |
5 | edition = "2021" |
6 | rust-version = "1.75" |
7 | |
8 | description = "API to handle D-Bus introspection XML" |
9 | repository = "https://github.com/dbus2/zbus/" |
10 | keywords = ["D-Bus" , "DBus" , "IPC" , "XML" ] |
11 | license = "MIT" |
12 | categories = ["parsing" ] |
13 | readme = "README.md" |
14 | |
15 | [dependencies] |
16 | serde = { version = "1.0" , features = ["derive" ] } |
17 | zvariant = { path = "../zvariant" , version = "4.0.0" , default-features = false } |
18 | zbus_names = { path = "../zbus_names" , version = "3.0" } |
19 | quick-xml = { version = "0.30" , features = ["serialize" , "overlapped-lists" ] } |
20 | static_assertions = "1.1.0" |
21 | |
22 | [dev-dependencies] |
23 | doc-comment = "0.3.3" |
24 | |
25 | [package.metadata.docs.rs] |
26 | all-features = true |
27 | targets = ["x86_64-unknown-linux-gnu" ] |
28 | |