]> git.proxmox.com Git - proxmox-backup.git/blob - pbs-config/Cargo.toml
19ff93bb8d4067cc55dc93bb7feaaee7077e9045
[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 anyhow = "1.0"
10 hex = "0.4.3"
11 lazy_static = "1.4"
12 libc = "0.2"
13 nix = "0.19.1"
14 once_cell = "1.3.1"
15 openssl = "0.10"
16 regex = "1.2"
17 serde = { version = "1.0", features = ["derive"] }
18 serde_json = "1.0"
19
20 proxmox = "0.15.3"
21 proxmox-lang = "1"
22 proxmox-router = { version = "1.1", default-features = false }
23 proxmox-schema = "1"
24 proxmox-section-config = "1"
25 proxmox-time = "1"
26 proxmox-shared-memory = "0.1.1"
27 proxmox-sys = "0.1.2"
28
29 pbs-api-types = { path = "../pbs-api-types" }
30 pbs-buildcfg = { path = "../pbs-buildcfg" }
31 pbs-tools = { path = "../pbs-tools" }