]> git.proxmox.com Git - proxmox.git/blob - proxmox-api-macro/Cargo.toml
bump proxmox-api-macro to 1.0.8-1
[proxmox.git] / proxmox-api-macro / Cargo.toml
1 [package]
2 name = "proxmox-api-macro"
3 edition.workspace = true
4 version = "1.0.8"
5 authors.workspace = true
6 license.workspace = true
7 repository.workspace = true
8 description = "Proxmox API macro"
9
10 exclude.workspace = true
11
12 [lib]
13 proc-macro = true
14
15 [dependencies]
16 anyhow.workspace = true
17 proc-macro2.workspace = true
18 quote.workspace = true
19 syn = { workspace = true , features = [ "extra-traits" ] }
20
21 [dev-dependencies]
22 futures.workspace = true
23 serde = { workspace = true, features = [ "derive" ] }
24 serde_json.workspace = true
25
26 [dev-dependencies.proxmox-schema]
27 workspace = true
28 features = [ "test-harness", "api-macro" ]
29
30 [dev-dependencies.proxmox-router]
31 workspace = true
32 features = [ "test-harness" ]
33
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 = []