proxmox/proxmox-api-macro/Cargo.toml
Fabian Grünbichler 4189221470 inherit shared, external dependencies
noteworthy changes:
- proxmox-http had a default_features_false dep on hyper, which is dropped (the
  default feature is empty anyway)
- hyper, libc, nix, tokio and url versions are unified
- missing (cosmetic) bindgen feature on zstd enabled everywhere

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

40 lines
969 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]
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 = []