]> git.proxmox.com Git - proxmox-backup.git/blame - pbs-tools/Cargo.toml
api: backup env: use check_privs
[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"
9c75e2f3 21log = "0.4.17"
770a36e5 22nix = "0.19.1"
067dc06d 23nom = "5.1"
ba0ccc59 24openssl = "0.10"
9eb78407 25percent-encoding = "2.1"
c3b8e74f 26regex = "1.5"
770a36e5
WB
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
25877d05 35#proxmox = { version = "0.15.3", default-features = false, features = [ "tokio" ] }
9c890d72 36proxmox-async = "0.4"
5a8726e6 37proxmox-borrow = "1"
6ef1b649 38proxmox-io = { version = "1", features = [ "tokio" ] }
229c1788 39proxmox-lang = { version = "1.1" }
6ef1b649 40proxmox-time = { version = "1" }
25877d05 41proxmox-sys = "0.2"
4805edc4
WB
42
43pbs-buildcfg = { path = "../pbs-buildcfg" }
a58a5cf7 44pbs-api-types = { path = "../pbs-api-types" }
a3399f43
WB
45
46[dev-dependencies]
47tokio = { version = "1.6", features = [ "macros" ] }