proxmox/proxmox-api-macro/Cargo.toml
Fabian Grünbichler 8316fd3899 more workspace dependencies
regex was missed in the first pass, and two intra-workspace dev-dependencies as
well.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
2022-12-12 09:30:30 +01:00

38 lines
913 B
TOML

[package]
name = "proxmox-api-macro"
edition.workspace = true
version = "1.0.3"
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Proxmox API macro"
exclude.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
[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 = []