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-11-18 14:12:59 +01:00
base64 = "0.13"
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:19:37 +02:00
hex = "0.4.3"
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-12-16 11:12:17 +01:00
regex = "1.5"
2021-07-06 13:26:35 +02:00
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-11-23 17:57:00 +01:00
#proxmox = { version = "0.15.3", default-features = false, features = [ "tokio" ] }
2022-02-21 14:25:29 +01:00
proxmox-async = "0.4"
2021-10-13 10:40:50 +02:00
proxmox-borrow = "1"
2021-10-08 11:19:37 +02:00
proxmox-io = { version = "1" , features = [ "tokio" ] }
2022-02-21 14:24:24 +01:00
proxmox-lang = { version = "1.1" }
2021-10-08 11:19:37 +02:00
proxmox-time = { version = "1" }
2021-11-23 17:57:00 +01:00
proxmox-sys = "0.2"
2021-07-15 12:15:50 +02:00
pbs-buildcfg = { path = "../pbs-buildcfg" }
2021-11-19 13:48:38 +01:00
pbs-api-types = { path = "../pbs-api-types" }
2021-07-19 13:00:16 +02:00
[ dev-dependencies ]
tokio = { version = "1.6" , features = [ "macros" ] }