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>
38 lines
815 B
TOML
38 lines
815 B
TOML
[package]
|
|
name = "proxmox-sys"
|
|
version = "0.4.1"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "System tools (using nix)."
|
|
|
|
exclude.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
base64.workspace = true
|
|
lazy_static.workspace = true
|
|
libc.workspace = true
|
|
log.workspace = true
|
|
nix.workspace = true
|
|
regex = "1.2"
|
|
serde_json.workspace = true
|
|
serde = { workspace = true, features = [ "derive" ] }
|
|
zstd = { workspace = true, optional = true}
|
|
|
|
# Macro crates:
|
|
proxmox-sortable-macro = { workspace = true, optional = true }
|
|
|
|
proxmox-io.workspace = true
|
|
proxmox-lang.workspace = true
|
|
proxmox-time.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
sortable-macro = ["dep:proxmox-sortable-macro"]
|
|
logrotate = ["dep:zstd"]
|
|
acl = []
|
|
crypt = []
|
|
timer = []
|