2021-07-06 13:26:35 +02:00
[ package ]
name = "pbs-tools"
version = "0.1.0"
2022-12-07 11:33:47 +01:00
authors . workspace = true
edition . workspace = true
2021-07-06 13:26:35 +02:00
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"
2022-05-16 15:02:07 +02:00
log = "0.4.17"
2022-06-02 13:10:33 +02:00
nix = "0.24"
2022-08-19 13:49:09 +02:00
nom = "7"
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-12-09 11:37:02 +01:00
proxmox-async . workspace = true
proxmox-io = { workspace = true , features = [ "tokio" ] }
proxmox-lang . workspace = true
proxmox-time . workspace = true
proxmox-sys . workspace = true
2021-07-15 12:15:50 +02:00
2022-12-09 11:37:02 +01:00
pbs-buildcfg . workspace = true
pbs-api-types . workspace = true
2021-07-19 13:00:16 +02:00
[ dev-dependencies ]
tokio = { version = "1.6" , features = [ "macros" ] }