]> git.proxmox.com Git - proxmox-backup.git/blame - pbs-tools/Cargo.toml
use new proxmox-async crate
[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"
daaeea8b 11base64 = "0.13"
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"
6ef1b649 18hex = "0.4.3"
4805edc4 19lazy_static = "1.4"
770a36e5 20libc = "0.2"
b9700a9f 21log = "0.4"
770a36e5 22nix = "0.19.1"
067dc06d 23nom = "5.1"
ba0ccc59 24openssl = "0.10"
9eb78407 25percent-encoding = "2.1"
770a36e5
WB
26regex = "1.2"
27serde = "1.0"
28serde_json = "1.0"
4805edc4 29# rt-multi-thread is required for block_in_place
2b7f8dd5 30tokio = { version = "1.6", features = [ "fs", "io-util", "rt", "rt-multi-thread", "sync" ] }
9eb78407 31url = "2.1"
2b7f8dd5 32walkdir = "2"
6c76aa43 33zstd = { version = "0.6", features = [ "bindgen" ] }
770a36e5 34
860eaec5 35proxmox = { version = "0.15.3", default-features = false, features = [ "tokio" ] }
9a1b24b6 36proxmox-async = "0.1"
5a8726e6 37proxmox-borrow = "1"
6ef1b649
WB
38proxmox-io = { version = "1", features = [ "tokio" ] }
39proxmox-lang = { version = "1" }
40proxmox-time = { version = "1" }
4805edc4
WB
41
42pbs-buildcfg = { path = "../pbs-buildcfg" }
a3399f43
WB
43
44[dev-dependencies]
45tokio = { version = "1.6", features = [ "macros" ] }