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