]> git.proxmox.com Git - proxmox.git/blob - proxmox-api-macro/Cargo.toml
bump proxmox-api-macro to 1.0.1-1
[proxmox.git] / proxmox-api-macro / Cargo.toml
1 [package]
2 name = "proxmox-api-macro"
3 edition = "2018"
4 version = "1.0.1"
5 authors = [ "Wolfgang Bumiller <w.bumiller@proxmox.com>" ]
6 license = "AGPL-3"
7 description = "Proxmox API macro"
8
9 exclude = [ "debian" ]
10
11 [lib]
12 proc-macro = true
13
14 [dependencies]
15 anyhow = "1.0"
16 proc-macro2 = "1.0"
17 quote = "1.0"
18 syn = { version = "1.0", features = [ "extra-traits", "full", "visit-mut" ] }
19
20 [dev-dependencies]
21 futures = "0.3"
22 serde = { version = "1.0", features = [ "derive" ] }
23 serde_json = "1.0"
24
25 [dev-dependencies.proxmox-schema]
26 version = "1.0.0"
27 path = "../proxmox-schema"
28 features = [ "test-harness", "api-macro" ]
29
30 [dev-dependencies.proxmox-router]
31 version = "1.0.0"
32 path = "../proxmox-router"
33 features = [ "test-harness" ]
34
35 # [features]
36 # # Used to quickly filter out the serde derive noise when using `cargo expand` for debugging!
37 # # Add this in case you need it, but don't commit it (to avoid debcargo picking this up)!
38 # noserde = []