]> git.proxmox.com Git - proxmox-backup.git/blob - proxmox-backup-client/Cargo.toml
update to proxmox-sys 0.2 crate
[proxmox-backup.git] / proxmox-backup-client / Cargo.toml
1 [package]
2 name = "proxmox-backup-client"
3 version = "0.1.0"
4 authors = ["Proxmox Support Team <support@proxmox.com>"]
5 edition = "2018"
6
7 [dependencies]
8 anyhow = "1.0"
9 futures = "0.3"
10 hyper = { version = "0.14", features = [ "full" ] }
11 libc = "0.2"
12 nix = "0.19.1"
13 openssl = "0.10"
14 serde = { version = "1.0", features = ["derive"] }
15 serde_json = "1.0"
16 tokio = { version = "1.6", features = [ "rt", "rt-multi-thread" ] }
17 tokio-stream = "0.1.0"
18 tokio-util = { version = "0.6", features = [ "codec", "io" ] }
19 xdg = "2.2"
20 zstd = { version = "0.6", features = [ "bindgen" ] }
21
22 pathpatterns = "0.1.2"
23 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
24
25 proxmox-async = "0.3"
26 proxmox-router = { version = "1.1", features = [ "cli" ] }
27 proxmox-schema = { version = "1", features = [ "api-macro" ] }
28 proxmox-time = "1"
29 proxmox-sys = { version = "0.2", features = [ "sortable-macro" ] }
30
31
32 pbs-api-types = { path = "../pbs-api-types" }
33 pbs-buildcfg = { path = "../pbs-buildcfg" }
34 pbs-config = { path = "../pbs-config" }
35 pbs-client = { path = "../pbs-client" }
36 pbs-datastore = { path = "../pbs-datastore" }
37 pbs-fuse-loop = { path = "../pbs-fuse-loop" }
38 pbs-tools = { path = "../pbs-tools" }