]> git.proxmox.com Git - proxmox-backup.git/blame - pbs-datastore/Cargo.toml
update to first proxmox crate split
[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"
eb5e0ae6 10base64 = "0.12"
f323e906
WB
11crc32fast = "1"
12endian_trait = { version = "0.6", features = [ "arrays" ] }
ef4df211 13futures = "0.3"
6d5d305d 14lazy_static = "1.4"
a5951b4f 15libc = "0.2"
155f657f 16log = "0.4"
f323e906
WB
17nix = "0.19.1"
18openssl = "0.10"
19serde = { version = "1.0", features = ["derive"] }
86fb3877 20serde_json = "1.0"
eb5e0ae6 21tokio = { version = "1.6", features = [] }
6d5d305d 22walkdir = "2"
f323e906
WB
23zstd = { version = "0.6", features = [ "bindgen" ] }
24
25pathpatterns = "0.1.2"
eb5e0ae6 26pxar = "0.10.1"
f323e906 27
6ef1b649
WB
28proxmox = "0.14.0"
29proxmox-io = "1"
30proxmox-lang = "1"
31proxmox-schema = { version = "1", features = [ "api-macro" ] }
32proxmox-time = "1"
33proxmox-uuid = "1"
f323e906 34
86fb3877 35pbs-api-types = { path = "../pbs-api-types" }
f323e906 36pbs-tools = { path = "../pbs-tools" }
bbdda58b 37pbs-config = { path = "../pbs-config" }