]>
Commit | Line | Data |
---|---|---|
b5c05fc8 WB |
1 | [package] |
2 | name = "proxmox-api-macro" | |
64959d9a | 3 | edition.workspace = true |
04e2d0e5 | 4 | version = "1.0.6" |
64959d9a FG |
5 | authors.workspace = true |
6 | license.workspace = true | |
7 | repository.workspace = true | |
a94de245 FG |
8 | description = "Proxmox API macro" |
9 | ||
64959d9a | 10 | exclude.workspace = true |
b5c05fc8 WB |
11 | |
12 | [lib] | |
13 | proc-macro = true | |
14 | ||
15 | [dependencies] | |
41892214 FG |
16 | anyhow.workspace = true |
17 | proc-macro2.workspace = true | |
18 | quote.workspace = true | |
19 | syn = { workspace = true , features = [ "extra-traits" ] } | |
b5c05fc8 WB |
20 | |
21 | [dev-dependencies] | |
41892214 FG |
22 | futures.workspace = true |
23 | serde = { workspace = true, features = [ "derive" ] } | |
24 | serde_json.workspace = true | |
cc065c17 | 25 | |
41f3fdfe | 26 | [dev-dependencies.proxmox-schema] |
8316fd38 | 27 | workspace = true |
41f3fdfe WB |
28 | features = [ "test-harness", "api-macro" ] |
29 | ||
30 | [dev-dependencies.proxmox-router] | |
8316fd38 | 31 | workspace = true |
41f3fdfe WB |
32 | features = [ "test-harness" ] |
33 | ||
cc065c17 WB |
34 | # [features] |
35 | # # Used to quickly filter out the serde derive noise when using `cargo expand` for debugging! | |
36 | # # Add this in case you need it, but don't commit it (to avoid debcargo picking this up)! | |
37 | # noserde = [] |