d6e86d670b
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
34 lines
730 B
TOML
34 lines
730 B
TOML
[package]
|
|
name = "proxmox-sys"
|
|
description = "System tools (using nix)."
|
|
version = "0.6.4"
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
exclude.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
libc.workspace = true
|
|
log.workspace = true
|
|
nix.workspace = true
|
|
openssl = { workspace = true, optional = true }
|
|
regex.workspace = true
|
|
serde_json.workspace = true
|
|
serde = { workspace = true, features = [ "derive" ] }
|
|
zstd = { workspace = true, optional = true}
|
|
|
|
proxmox-io.workspace = true
|
|
proxmox-lang.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
logrotate = ["dep:zstd"]
|
|
acl = []
|
|
crypt = ["dep:openssl"]
|
|
timer = []
|