]> git.proxmox.com Git - proxmox-backup.git/blob - pbs-client/Cargo.toml
bump regex dep to 1.5
[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.19.1"
20 openssl = "0.10"
21 percent-encoding = "2.1"
22 pin-project-lite = "0.2"
23 regex = "1.5"
24 rustyline = "7"
25 serde_json = "1.0"
26 tokio = { version = "1.6", features = [ "fs", "signal" ] }
27 tokio-stream = "0.1.0"
28 tower-service = "0.3.0"
29 xdg = "2.2"
30
31 pathpatterns = "0.1.2"
32
33 proxmox-async = "0.3"
34 proxmox-fuse = "0.1.1"
35 proxmox-http = { version = "0.6", features = [ "client", "http-helpers", "websocket" ] }
36 proxmox-io = { version = "1.0.1", features = [ "tokio" ] }
37 proxmox-lang = "1"
38 proxmox-router = { version = "1.1", features = [ "cli" ] }
39 proxmox-schema = "1.1"
40 proxmox-time = "1"
41 proxmox-sys = "0.2"
42
43 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
44
45 pbs-api-types = { path = "../pbs-api-types" }
46 pbs-buildcfg = { path = "../pbs-buildcfg" }
47 pbs-datastore = { path = "../pbs-datastore" }
48 pbs-tools = { path = "../pbs-tools" }