proxmox/proxmox-schema/Cargo.toml
Wolfgang Bumiller 74c3943a89 bump schema to 2.0.2-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2023-11-23 09:16:46 +01:00

40 lines
866 B
TOML

[package]
name = "proxmox-schema"
version = "2.0.2"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "proxmox api schema and validation"
exclude.workspace = true
[dependencies]
anyhow.workspace = true
lazy_static.workspace = true
regex.workspace = true
serde.workspace = true
serde_json.workspace = true
textwrap = "0.16"
# the upid type needs this for 'getpid'
libc = { workspace = true, optional = true }
nix = { workspace = true, optional = true }
proxmox-api-macro = { workspace = true, optional = true }
[dev-dependencies]
url.workspace = true
serde = { workspace = true, features = [ "derive" ] }
proxmox-api-macro.workspace = true
[features]
default = []
api-macro = ["dep:proxmox-api-macro"]
upid-api-impl = [ "dep:libc", "dep:nix" ]
api-types = []
# Testing only
test-harness = []