]> git.proxmox.com Git - proxmox-backup.git/blame - pbs-datastore/Cargo.toml
move ApiConfig, FileLogger and CommandoSocket to proxmox-rest-server workspace
[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"
a5951b4f 14libc = "0.2"
155f657f 15log = "0.4"
f323e906
WB
16nix = "0.19.1"
17openssl = "0.10"
18serde = { version = "1.0", features = ["derive"] }
86fb3877 19serde_json = "1.0"
eb5e0ae6 20tokio = { version = "1.6", features = [] }
f323e906
WB
21zstd = { version = "0.6", features = [ "bindgen" ] }
22
23pathpatterns = "0.1.2"
eb5e0ae6 24pxar = "0.10.1"
f323e906 25
fd6d2438 26proxmox = { version = "0.13.3", default-features = false, features = [ "api-macro" ] }
f323e906 27
86fb3877 28pbs-api-types = { path = "../pbs-api-types" }
f323e906 29pbs-tools = { path = "../pbs-tools" }
bbdda58b 30pbs-config = { path = "../pbs-config" }