1 | [package] |
2 | name = "zbus-lockstep-macros" |
3 | authors = ["Luuk van der Duim <luukvanderduim@gmail.com>" ] |
4 | description = "Macros to keep types in lockstep with DBus XML definitions" |
5 | version = "0.4.4" |
6 | edition = "2021" |
7 | keywords = ["type-safety" , "zbus" , "DBus" , "IPC" ] |
8 | categories = ["API-bindings" ] |
9 | documentation = "https://docs.rs/zbus-lockstep-macro" |
10 | repository = "https://github.com/luukvanderduim/zbus-lockstep" |
11 | readme = "README.md" |
12 | license = "MIT" |
13 | include = ["src/**/*" , "LICENSE-MIT" , "README.md" ] |
14 | publish = true |
15 | |
16 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
17 | |
18 | [lib] |
19 | proc-macro = true |
20 | |
21 | [dependencies] |
22 | syn = "2.0" |
23 | proc-macro2 = "1.0" |
24 | quote = "1.0" |
25 | zbus-lockstep = { path = "../zbus-lockstep" , version = "0.4.4" } |
26 | zbus_xml = "4.0" |
27 | zvariant = "4.0" |
28 | |
29 | [dev-dependencies] |
30 | version-sync = "0.9" |
31 | |