5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-02-01 05:47:22 +03:00
Fabian Grünbichler 1fbdf8ef79 switch proxmox dependencies to workspace
besides harmonizing versions, the only global change is that the tokio-io
feature of pxar is now implied since its default anyway, instead of being
spelled out.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
2022-12-12 09:05:27 +01:00

47 lines
1.2 KiB
TOML

[package]
name = "pbs-tools"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
description = "common tools used throughout pbs"
# This must not depend on any subcrates more closely related to pbs itself.
[dependencies]
anyhow = "1.0"
base64 = "0.13"
bytes = "1.0"
crc32fast = "1"
endian_trait = { version = "0.6", features = ["arrays"] }
flate2 = "1.0"
foreign-types = "0.3"
futures = "0.3"
hex = "0.4.3"
lazy_static = "1.4"
libc = "0.2"
log = "0.4.17"
nix = "0.24"
nom = "7"
openssl = "0.10"
percent-encoding = "2.1"
regex = "1.5"
serde = "1.0"
serde_json = "1.0"
# rt-multi-thread is required for block_in_place
tokio = { version = "1.6", features = [ "fs", "io-util", "rt", "rt-multi-thread", "sync" ] }
url = "2.1"
walkdir = "2"
zstd = { version = "0.6", features = [ "bindgen" ] }
#proxmox = { version = "0.15.3", default-features = false, features = [ "tokio" ] }
proxmox-async.workspace = true
proxmox-io= { workspace = true, features = [ "tokio" ] }
proxmox-lang.workspace=true
proxmox-time.workspace = true
proxmox-sys.workspace = true
pbs-buildcfg.workspace = true
pbs-api-types.workspace = true
[dev-dependencies]
tokio = { version = "1.6", features = [ "macros" ] }