]> git.proxmox.com Git - proxmox-backup.git/blob - pbs-config/Cargo.toml
moved key_derivation.rs from pbs_datastore to pbs-config/src/key_config.rs
[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 lazy_static = "1.4"
11 serde = { version = "1.0", features = ["derive"] }
12 serde_json = "1.0"
13 openssl = "0.10"
14 nix = "0.19.1"
15
16
17 proxmox = { version = "0.13.0", default-features = false, features = [ "cli" ] }
18
19 pbs-api-types = { path = "../pbs-api-types" }
20 pbs-buildcfg = { path = "../pbs-buildcfg" }
21 pbs-tools = { path = "../pbs-tools" }