]> git.proxmox.com Git - proxmox-backup.git/blame - pbs-datastore/Cargo.toml
add pbs-api-types subcrate, move key_derivation
[proxmox-backup.git] / pbs-datastore / Cargo.toml
CommitLineData
f323e906
WB
1[package]
2name = "pbs-datastore"
3version = "0.1.0"
4authors = ["Proxmox Support Team <support@proxmox.com>"]
5edition = "2018"
6description = "low level pbs data storage access"
7
8[dependencies]
9anyhow = "1.0"
10crc32fast = "1"
11endian_trait = { version = "0.6", features = [ "arrays" ] }
12nix = "0.19.1"
13openssl = "0.10"
14serde = { version = "1.0", features = ["derive"] }
86fb3877 15serde_json = "1.0"
f323e906
WB
16zstd = { version = "0.6", features = [ "bindgen" ] }
17
18pathpatterns = "0.1.2"
19pxar = { version = "0.10.1", features = [ "tokio-io" ] }
20
21proxmox = { version = "0.11.5", default-features = false, features = [ "api-macro" ] }
22
86fb3877 23pbs-api-types = { path = "../pbs-api-types" }
f323e906 24pbs-tools = { path = "../pbs-tools" }