]> git.proxmox.com Git - proxmox-backup.git/blame - pbs-tools/Cargo.toml
move more tools for the client into subcrates
[proxmox-backup.git] / pbs-tools / Cargo.toml
CommitLineData
770a36e5
WB
1[package]
2name = "pbs-tools"
3version = "0.1.0"
4authors = ["Proxmox Support Team <support@proxmox.com>"]
5edition = "2018"
6description = "common tools used throughout pbs"
7
8# This must not depend on any subcrates more closely related to pbs itself.
9[dependencies]
10anyhow = "1.0"
9eb78407 11base64 = "0.12"
4805edc4
WB
12foreign-types = "0.3"
13futures = "0.3"
14lazy_static = "1.4"
770a36e5
WB
15libc = "0.2"
16nix = "0.19.1"
067dc06d 17nom = "5.1"
ba0ccc59 18openssl = "0.10"
9eb78407 19percent-encoding = "2.1"
770a36e5
WB
20regex = "1.2"
21serde = "1.0"
22serde_json = "1.0"
4805edc4
WB
23# rt-multi-thread is required for block_in_place
24tokio = { version = "1.6", features = [ "rt", "rt-multi-thread", "sync" ] }
9eb78407 25url = "2.1"
770a36e5
WB
26
27proxmox = { version = "0.11.5", default-features = false, features = [] }
4805edc4
WB
28
29pbs-buildcfg = { path = "../pbs-buildcfg" }