]> git.proxmox.com Git - proxmox-backup.git/blob - pbs-datastore/Cargo.toml
moved key_derivation.rs from pbs_datastore to pbs-config/src/key_config.rs
[proxmox-backup.git] / pbs-datastore / Cargo.toml
1 [package]
2 name = "pbs-datastore"
3 version = "0.1.0"
4 authors = ["Proxmox Support Team <support@proxmox.com>"]
5 edition = "2018"
6 description = "low level pbs data storage access"
7
8 [dependencies]
9 anyhow = "1.0"
10 base64 = "0.12"
11 crc32fast = "1"
12 endian_trait = { version = "0.6", features = [ "arrays" ] }
13 futures = "0.3"
14 libc = "0.2"
15 log = "0.4"
16 nix = "0.19.1"
17 openssl = "0.10"
18 serde = { version = "1.0", features = ["derive"] }
19 serde_json = "1.0"
20 tokio = { version = "1.6", features = [] }
21 zstd = { version = "0.6", features = [ "bindgen" ] }
22
23 pathpatterns = "0.1.2"
24 pxar = "0.10.1"
25
26 proxmox = { version = "0.13.0", default-features = false, features = [ "api-macro" ] }
27
28 pbs-api-types = { path = "../pbs-api-types" }
29 pbs-tools = { path = "../pbs-tools" }
30 pbs-config = { path = "../pbs-config" }