]> git.proxmox.com Git - proxmox.git/blob - proxmox-sys/Cargo.toml
tfa: fix deserialize-default in TfaUser
[proxmox.git] / proxmox-sys / Cargo.toml
1 [package]
2 name = "proxmox-sys"
3 version = "0.5.2"
4 authors.workspace = true
5 edition.workspace = true
6 license.workspace = true
7 repository.workspace = true
8 description = "System tools (using nix)."
9
10 exclude.workspace = true
11
12 [dependencies]
13 anyhow.workspace = true
14 base64.workspace = true
15 lazy_static.workspace = true
16 libc.workspace = true
17 log.workspace = true
18 nix.workspace = true
19 regex.workspace = true
20 serde_json.workspace = true
21 serde = { workspace = true, features = [ "derive" ] }
22 zstd = { workspace = true, optional = true}
23
24 proxmox-io.workspace = true
25 proxmox-lang.workspace = true
26 proxmox-time.workspace = true
27
28 [features]
29 default = []
30 logrotate = ["dep:zstd"]
31 acl = []
32 crypt = []
33 timer = []