proxmox/proxmox-api-macro/Cargo.toml
Wolfgang Bumiller d601b57fd0 api-macro: bump to 1.2.1-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2024-09-26 14:52:52 +02:00

40 lines
979 B
TOML

[package]
name = "proxmox-api-macro"
description = "Proxmox API macro"
version = "1.2.1"
authors.workspace = true
edition.workspace = true
exclude.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
[lib]
proc-macro = true
[dependencies]
anyhow.workspace = true
proc-macro2.workspace = true
quote.workspace = true
syn = { workspace = true , features = [ "extra-traits" ] }
[dev-dependencies]
futures.workspace = true
serde = { workspace = true, features = [ "derive" ] }
serde_json.workspace = true
proxmox-section-config.workspace = true
[dev-dependencies.proxmox-schema]
workspace = true
features = [ "test-harness", "api-macro" ]
[dev-dependencies.proxmox-router]
workspace = true
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 = []