2021-07-06 14:26:35 +03:00
[ package ]
name = "pbs-tools"
version = "0.1.0"
authors = [ "Proxmox Support Team <support@proxmox.com>" ]
edition = "2018"
description = "common tools used throughout pbs"
# This must not depend on any subcrates more closely related to pbs itself.
[ dependencies ]
anyhow = "1.0"
2021-11-18 16:12:59 +03:00
base64 = "0.13"
2021-07-19 11:50:18 +03:00
bytes = "1.0"
crc32fast = "1"
endian_trait = { version = "0.6" , features = [ "arrays" ] }
flate2 = "1.0"
2021-07-15 13:15:50 +03:00
foreign-types = "0.3"
futures = "0.3"
2021-10-08 12:19:37 +03:00
hex = "0.4.3"
2021-07-15 13:15:50 +03:00
lazy_static = "1.4"
2021-07-06 14:26:35 +03:00
libc = "0.2"
2021-09-23 11:09:19 +03:00
log = "0.4"
2021-07-06 14:26:35 +03:00
nix = "0.19.1"
2021-07-07 11:10:33 +03:00
nom = "5.1"
2021-07-09 15:10:15 +03:00
openssl = "0.10"
2021-07-12 12:07:52 +03:00
percent-encoding = "2.1"
2021-12-16 13:12:17 +03:00
regex = "1.5"
2021-07-06 14:26:35 +03:00
serde = "1.0"
serde_json = "1.0"
2021-07-15 13:15:50 +03:00
# rt-multi-thread is required for block_in_place
2021-07-19 11:50:18 +03:00
tokio = { version = "1.6" , features = [ "fs" , "io-util" , "rt" , "rt-multi-thread" , "sync" ] }
2021-07-12 12:07:52 +03:00
url = "2.1"
2021-07-19 11:50:18 +03:00
walkdir = "2"
2021-09-01 13:21:51 +03:00
zstd = { version = "0.6" , features = [ "bindgen" ] }
2021-07-06 14:26:35 +03:00
2021-11-23 19:57:00 +03:00
#proxmox = { version = "0.15.3", default-features = false, features = [ "tokio" ] }
proxmox-async = "0.3"
2021-10-13 11:40:50 +03:00
proxmox-borrow = "1"
2021-10-08 12:19:37 +03:00
proxmox-io = { version = "1" , features = [ "tokio" ] }
proxmox-lang = { version = "1" }
proxmox-time = { version = "1" }
2021-11-23 19:57:00 +03:00
proxmox-sys = "0.2"
2021-07-15 13:15:50 +03:00
pbs-buildcfg = { path = "../pbs-buildcfg" }
2021-11-19 15:48:38 +03:00
pbs-api-types = { path = "../pbs-api-types" }
2021-07-19 14:00:16 +03:00
[ dev-dependencies ]
tokio = { version = "1.6" , features = [ "macros" ] }