]> git.proxmox.com Git - proxmox-backup.git/blame - pbs-tools/Cargo.toml
pbs-tools: drop borrow module
[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"
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
e3f3359c 35proxmox = { version = "0.14.0", default-features = false, features = [ "tokio" ] }
5a8726e6 36proxmox-borrow = "1"
6ef1b649
WB
37proxmox-io = { version = "1", features = [ "tokio" ] }
38proxmox-lang = { version = "1" }
39proxmox-time = { version = "1" }
4805edc4
WB
40
41pbs-buildcfg = { path = "../pbs-buildcfg" }
fc5870be 42pbs-runtime = { path = "../pbs-runtime" }
a3399f43
WB
43
44[dev-dependencies]
45tokio = { version = "1.6", features = [ "macros" ] }