49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
[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"
|
|
hex = "0.4.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-lite = "0.2"
|
|
regex = "1.5"
|
|
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"
|
|
|
|
proxmox-async = "0.3"
|
|
proxmox-fuse = "0.1.1"
|
|
proxmox-http = { version = "0.6", features = [ "client", "http-helpers", "websocket" ] }
|
|
proxmox-io = { version = "1.0.1", features = [ "tokio" ] }
|
|
proxmox-lang = "1"
|
|
proxmox-router = { version = "1.1", features = [ "cli" ] }
|
|
proxmox-schema = "1.1"
|
|
proxmox-time = "1"
|
|
proxmox-sys = "0.2"
|
|
|
|
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-tools = { path = "../pbs-tools" }
|