1 | [package] |
2 | name = "zbus_macros" |
3 | # Keep version in sync with zbus crate |
4 | version = "4.4.0" |
5 | authors = [ |
6 | "Marc-André Lureau <marcandre.lureau@redhat.com>" , |
7 | "Zeeshan Ali Khan <zeeshanak@gnome.org>" , |
8 | ] |
9 | edition = "2021" |
10 | rust-version = "1.75" |
11 | |
12 | description = "proc-macros for zbus" |
13 | repository = "https://github.com/dbus2/zbus/" |
14 | keywords = ["D-Bus" , "DBus" , "IPC" ] |
15 | license = "MIT" |
16 | categories = ["data-structures" , "encoding" , "parsing" ] |
17 | readme = "README.md" |
18 | |
19 | [lib] |
20 | proc-macro = true |
21 | |
22 | [dependencies] |
23 | proc-macro2 = "1.0.81" |
24 | syn = { version = "2.0.64" , features = ["extra-traits" , "fold" , "full" ] } |
25 | quote = "1.0.36" |
26 | proc-macro-crate = "3.1.0" |
27 | zvariant_utils = { path = "../zvariant_utils" , version = "=2.1.0" } |
28 | |
29 | [dev-dependencies] |
30 | zbus = { path = "../zbus" } |
31 | serde = { version = "1.0.200" , features = ["derive" ] } |
32 | trybuild = "1.0.93" |
33 | rustversion = "1.0.15" |
34 | async-io = "2.3.2" |
35 | futures-util = { version = "0.3.30" , default-features = false } |
36 | |