]> git.proxmox.com Git - proxmox-backup.git/blob - pbs-client/Cargo.toml
move json_object_to_query to proxmox-http+http-helpers
[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 hex = "0.4.3"
14 h2 = { version = "0.3", features = [ "stream" ] }
15 http = "0.2"
16 hyper = { version = "0.14", features = [ "full" ] }
17 lazy_static = "1.4"
18 libc = "0.2"
19 nix = "0.24"
20 log = "0.4"
21 openssl = "0.10"
22 percent-encoding = "2.1"
23 pin-project-lite = "0.2"
24 regex = "1.5"
25 rustyline = "9"
26 serde = "1.0"
27 serde_json = "1.0"
28 tokio = { version = "1.6", features = [ "fs", "signal" ] }
29 tokio-stream = "0.1.0"
30 tower-service = "0.3.0"
31 xdg = "2.2"
32 tar = "0.4"
33
34 pathpatterns = "0.1.2"
35
36 proxmox-async = "0.4"
37 proxmox-compression = "0.1.1"
38 proxmox-fuse = "0.1.3"
39 proxmox-http = { version = "0.6.3", features = [ "client", "http-helpers", "websocket" ] }
40 proxmox-io = { version = "1.0.1", features = [ "tokio" ] }
41 proxmox-lang = "1.1"
42 proxmox-router = { version = "1.2.4", features = [ "cli" ] }
43 proxmox-schema = "1.3.1"
44 proxmox-time = "1"
45 proxmox-sys = "0.3.1"
46
47 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
48
49 pbs-api-types = { path = "../pbs-api-types" }
50 pbs-buildcfg = { path = "../pbs-buildcfg" }
51 pbs-datastore = { path = "../pbs-datastore" }
52 pbs-tools = { path = "../pbs-tools" }