e5abc0590e
so that we no longer have to (or forget to) bump the version in multiple places. notable changes: - outdated versions have been unified - proxmox-metrics -> proxmox-async no longer uses explicit empty features (proxmox-async doesn't provide any anyway) - proxmox-subscription -> proxmox-http no longer uses explicit default_features = false (proxmox-http has an empty default feature anyway) - missing path dependencies added (mainly proxmox-rest-server) Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
39 lines
842 B
TOML
39 lines
842 B
TOML
[package]
|
|
name = "proxmox-schema"
|
|
version = "1.3.5"
|
|
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 = "1.5"
|
|
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" ]
|
|
|
|
# Testing only
|
|
test-harness = []
|