proxmox/proxmox-api-macro/Cargo.toml
Wolfgang Bumiller b49f3554c7 bump proxmox-api-macro to 1.0.3-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2022-05-19 12:04:03 +02:00

39 lines
932 B
TOML

[package]
name = "proxmox-api-macro"
edition = "2018"
version = "1.0.3"
authors = [ "Wolfgang Bumiller <w.bumiller@proxmox.com>" ]
license = "AGPL-3"
description = "Proxmox API macro"
exclude = [ "debian" ]
[lib]
proc-macro = true
[dependencies]
anyhow = "1.0"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = [ "extra-traits", "full", "visit-mut" ] }
[dev-dependencies]
futures = "0.3"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
[dev-dependencies.proxmox-schema]
version = "1.0.0"
path = "../proxmox-schema"
features = [ "test-harness", "api-macro" ]
[dev-dependencies.proxmox-router]
version = "1.0.0"
path = "../proxmox-router"
features = [ "test-harness" ]
# [features]
# # Used to quickly filter out the serde derive noise when using `cargo expand` for debugging!
# # Add this in case you need it, but don't commit it (to avoid debcargo picking this up)!
# noserde = []