]> git.proxmox.com Git - proxmox-backup.git/blob - pbs-client/Cargo.toml
move client to pbs-client subcrate
[proxmox-backup.git] / pbs-client / Cargo.toml
1 [package]
2 name = "pbs-client"
3 version = "0.1.0"
4 authors = ["Wolfgang Bumiller <w.bumiller@proxmox.com>"]
5 edition = "2018"
6 description = "The main proxmox backup client crate"
7
8 [dependencies]
9 anyhow = "1.0"
10 bitflags = "1.2.1"
11 bytes = "1.0"
12 futures = "0.3"
13 h2 = { version = "0.3", features = [ "stream" ] }
14 http = "0.2"
15 hyper = { version = "0.14", features = [ "full" ] }
16 lazy_static = "1.4"
17 libc = "0.2"
18 nix = "0.19.1"
19 openssl = "0.10"
20 percent-encoding = "2.1"
21 pin-project = "1.0"
22 regex = "1.2"
23 rustyline = "7"
24 serde_json = "1.0"
25 tokio = { version = "1.6", features = [ "fs", "signal" ] }
26 tokio-stream = "0.1.0"
27 tower-service = "0.3.0"
28 xdg = "2.2"
29
30 pathpatterns = "0.1.2"
31 proxmox = { version = "0.11.5", default-features = false, features = [ "cli" ] }
32 proxmox-fuse = "0.1.1"
33 proxmox-http = { version = "0.2.1", features = [ "client", "http-helpers", "websocket" ] }
34 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
35
36 pbs-api-types = { path = "../pbs-api-types" }
37 pbs-buildcfg = { path = "../pbs-buildcfg" }
38 pbs-datastore = { path = "../pbs-datastore" }
39 pbs-runtime = { path = "../pbs-runtime" }
40 pbs-tools = { path = "../pbs-tools" }