2021-07-19 08:50:18 +00:00
|
|
|
[package]
|
|
|
|
name = "pbs-client"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "The main proxmox backup client crate"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
|
|
|
bitflags = "1.2.1"
|
|
|
|
bytes = "1.0"
|
|
|
|
futures = "0.3"
|
|
|
|
h2 = { version = "0.3", features = [ "stream" ] }
|
|
|
|
http = "0.2"
|
|
|
|
hyper = { version = "0.14", features = [ "full" ] }
|
|
|
|
lazy_static = "1.4"
|
|
|
|
libc = "0.2"
|
|
|
|
nix = "0.19.1"
|
|
|
|
openssl = "0.10"
|
|
|
|
percent-encoding = "2.1"
|
|
|
|
pin-project = "1.0"
|
|
|
|
regex = "1.2"
|
|
|
|
rustyline = "7"
|
|
|
|
serde_json = "1.0"
|
|
|
|
tokio = { version = "1.6", features = [ "fs", "signal" ] }
|
|
|
|
tokio-stream = "0.1.0"
|
|
|
|
tower-service = "0.3.0"
|
|
|
|
xdg = "2.2"
|
|
|
|
|
|
|
|
pathpatterns = "0.1.2"
|
2021-07-20 11:51:55 +00:00
|
|
|
proxmox = { version = "0.12.0", default-features = false, features = [ "cli" ] }
|
2021-07-19 08:50:18 +00:00
|
|
|
proxmox-fuse = "0.1.1"
|
2021-07-20 16:13:56 +00:00
|
|
|
proxmox-http = { version = "0.3.0", features = [ "client", "http-helpers", "websocket" ] }
|
2021-07-19 08:50:18 +00:00
|
|
|
pxar = { version = "0.10.1", features = [ "tokio-io" ] }
|
|
|
|
|
|
|
|
pbs-api-types = { path = "../pbs-api-types" }
|
|
|
|
pbs-buildcfg = { path = "../pbs-buildcfg" }
|
|
|
|
pbs-datastore = { path = "../pbs-datastore" }
|
|
|
|
pbs-runtime = { path = "../pbs-runtime" }
|
|
|
|
pbs-tools = { path = "../pbs-tools" }
|