]> git.proxmox.com Git - proxmox-backup.git/blob - pbs-config/Cargo.toml
51b4bd8b560e5a7994581a31537e85f882aa184c
[proxmox-backup.git] / pbs-config / Cargo.toml
1 [package]
2 name = "pbs-config"
3 version = "0.1.0"
4 authors = ["Proxmox Support Team <support@proxmox.com>"]
5 edition = "2018"
6 description = "Configuration file management for PBS"
7
8 [dependencies]
9 libc = "0.2"
10 anyhow = "1.0"
11 lazy_static = "1.4"
12 serde = { version = "1.0", features = ["derive"] }
13 serde_json = "1.0"
14 openssl = "0.10"
15 nix = "0.19.1"
16 regex = "1.2"
17 once_cell = "1.3.1"
18
19 proxmox = { version = "0.14.0", default-features = false, features = [ "cli" ] }
20
21 pbs-api-types = { path = "../pbs-api-types" }
22 pbs-buildcfg = { path = "../pbs-buildcfg" }
23 pbs-tools = { path = "../pbs-tools" }