2021-08-26 11:00:37 +02:00
[ package ]
name = "proxmox-backup-client"
version = "0.1.0"
authors = [ "Proxmox Support Team <support@proxmox.com>" ]
edition = "2018"
[ dependencies ]
anyhow = "1.0"
futures = "0.3"
hyper = { version = "0.14" , features = [ "full" ] }
libc = "0.2"
2022-06-02 13:10:33 +02:00
nix = "0.24"
2021-08-26 11:00:37 +02:00
openssl = "0.10"
serde = { version = "1.0" , features = [ "derive" ] }
serde_json = "1.0"
tokio = { version = "1.6" , features = [ "rt" , "rt-multi-thread" ] }
tokio-stream = "0.1.0"
2022-06-02 09:40:54 +02:00
tokio-util = { version = "0.7" , features = [ "codec" , "io" ] }
2021-08-26 11:00:37 +02:00
xdg = "2.2"
zstd = { version = "0.6" , features = [ "bindgen" ] }
pathpatterns = "0.1.2"
pxar = { version = "0.10.1" , features = [ "tokio-io" ] }
2022-02-21 14:25:29 +01:00
proxmox-async = "0.4"
2021-11-25 12:30:03 +01:00
proxmox-io = "1.0.1"
2022-06-21 10:43:11 +02:00
proxmox-router = { version = "1.2.4" , features = [ "cli" ] }
2022-04-13 08:20:27 +02:00
proxmox-schema = { version = "1.3.1" , features = [ "api-macro" ] }
2021-10-08 11:19:37 +02:00
proxmox-time = "1"
2022-06-02 13:10:33 +02:00
proxmox-sys = { version = "0.3" , features = [ "sortable-macro" ] }
2021-08-26 11:00:37 +02:00
pbs-api-types = { path = "../pbs-api-types" }
pbs-buildcfg = { path = "../pbs-buildcfg" }
2021-09-07 09:22:14 +02:00
pbs-config = { path = "../pbs-config" }
2021-08-26 11:00:37 +02:00
pbs-client = { path = "../pbs-client" }
pbs-datastore = { path = "../pbs-datastore" }
pbs-fuse-loop = { path = "../pbs-fuse-loop" }
pbs-tools = { path = "../pbs-tools" }