]> git.proxmox.com Git - proxmox-backup.git/blob - pbs-datastore/Cargo.toml
move remaining client tools to pbs-tools/datastore
[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 libc = "0.2"
14 log = "0.4"
15 nix = "0.19.1"
16 openssl = "0.10"
17 serde = { version = "1.0", features = ["derive"] }
18 serde_json = "1.0"
19 tokio = { version = "1.6", features = [] }
20 zstd = { version = "0.6", features = [ "bindgen" ] }
21
22 pathpatterns = "0.1.2"
23 pxar = "0.10.1"
24
25 proxmox = { version = "0.12.0", default-features = false, features = [ "api-macro" ] }
26
27 pbs-api-types = { path = "../pbs-api-types" }
28 pbs-tools = { path = "../pbs-tools" }