proxmox/proxmox-subscription/Cargo.toml
Fabian Grünbichler e5abc0590e define workspace dependencies in workspace
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>
2022-12-07 09:48:38 +01:00

32 lines
753 B
TOML

[package]
name = "proxmox-subscription"
version = "0.3.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Proxmox subscription utilitites"
exclude.workspace = true
[dependencies]
anyhow.workspace = true
base64.workspace = true
hex.workspace = true
lazy_static.workspace = true
openssl.workspace = true
regex = "1.5"
serde.workspace = true
serde_json.workspace = true
proxmox-http = { workspace = true, features = ["client-trait", "http-helpers"] }
proxmox-serde.workspace = true
proxmox-sys.workspace = true
proxmox-time.workspace = true
proxmox-schema = { workspace = true, features = ["api-macro"], optional = true }
[features]
default = []
api-types = ["dep:proxmox-schema"]