]> git.proxmox.com Git - proxmox-backup.git/blame - pbs-tools/Cargo.toml
move client to pbs-client subcrate
[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"
2b7f8dd5
WB
12bytes = "1.0"
13crc32fast = "1"
14endian_trait = { version = "0.6", features = ["arrays"] }
15flate2 = "1.0"
4805edc4
WB
16foreign-types = "0.3"
17futures = "0.3"
18lazy_static = "1.4"
770a36e5
WB
19libc = "0.2"
20nix = "0.19.1"
067dc06d 21nom = "5.1"
ba0ccc59 22openssl = "0.10"
9eb78407 23percent-encoding = "2.1"
770a36e5
WB
24regex = "1.2"
25serde = "1.0"
26serde_json = "1.0"
4805edc4 27# rt-multi-thread is required for block_in_place
2b7f8dd5 28tokio = { version = "1.6", features = [ "fs", "io-util", "rt", "rt-multi-thread", "sync" ] }
9eb78407 29url = "2.1"
2b7f8dd5 30walkdir = "2"
770a36e5 31
2b7f8dd5 32proxmox = { version = "0.11.5", default-features = false, features = [ "tokio" ] }
4805edc4
WB
33
34pbs-buildcfg = { path = "../pbs-buildcfg" }