2021-07-06 13:26:35 +02: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-07-12 11:07:52 +02:00
base64 = "0.12"
2021-07-19 10:50:18 +02:00
bytes = "1.0"
crc32fast = "1"
endian_trait = { version = "0.6" , features = [ "arrays" ] }
flate2 = "1.0"
2021-07-15 12:15:50 +02:00
foreign-types = "0.3"
futures = "0.3"
2021-10-08 11:18:22 +02:00
hex = "0.4"
2021-07-15 12:15:50 +02:00
lazy_static = "1.4"
2021-07-06 13:26:35 +02:00
libc = "0.2"
2021-09-23 10:09:19 +02:00
log = "0.4"
2021-07-06 13:26:35 +02:00
nix = "0.19.1"
2021-07-07 10:10:33 +02:00
nom = "5.1"
2021-07-09 14:10:15 +02:00
openssl = "0.10"
2021-07-12 11:07:52 +02:00
percent-encoding = "2.1"
2021-07-06 13:26:35 +02:00
regex = "1.2"
serde = "1.0"
serde_json = "1.0"
2021-07-15 12:15:50 +02:00
# rt-multi-thread is required for block_in_place
2021-07-19 10:50:18 +02:00
tokio = { version = "1.6" , features = [ "fs" , "io-util" , "rt" , "rt-multi-thread" , "sync" ] }
2021-07-12 11:07:52 +02:00
url = "2.1"
2021-07-19 10:50:18 +02:00
walkdir = "2"
2021-09-01 12:21:51 +02:00
zstd = { version = "0.6" , features = [ "bindgen" ] }
2021-07-06 13:26:35 +02:00
2021-10-08 11:18:22 +02:00
proxmox = { version = "0.14.0" , default-features = false , features = [ "tokio" ] }
proxmox-io = { version = "1.0.0" }
proxmox-lang = { version = "1.0.0" }
proxmox-time = { version = "1.0.0" }
2021-07-15 12:15:50 +02:00
pbs-buildcfg = { path = "../pbs-buildcfg" }
2021-07-20 11:26:29 +02:00
pbs-runtime = { path = "../pbs-runtime" }
2021-07-19 13:00:16 +02:00
[ dev-dependencies ]
tokio = { version = "1.6" , features = [ "macros" ] }