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