]> git.proxmox.com Git - proxmox-backup.git/blob - proxmox-backup-client/Cargo.toml
b6e138072281e74857fdea8c5754a7d756efeb42
[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 = { version = "0.13.0", features = [ "sortable-macro", "api-macro", "cli", "router" ] }
26
27 pbs-api-types = { path = "../pbs-api-types" }
28 pbs-buildcfg = { path = "../pbs-buildcfg" }
29 pbs-client = { path = "../pbs-client" }
30 pbs-datastore = { path = "../pbs-datastore" }
31 pbs-fuse-loop = { path = "../pbs-fuse-loop" }
32 pbs-runtime = { path = "../pbs-runtime" }
33 pbs-systemd = { path = "../pbs-systemd" }
34 pbs-tools = { path = "../pbs-tools" }