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