Dominik Csapak 6e989a1c29 proxmox-compression: add 'tar_directory'
similar to 'zip_directory', this is intended to tar a local directory,
e.g. when we're in a restore vm.

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2022-07-05 12:12:02 +02:00

31 lines
802 B
TOML

[package]
name = "proxmox-compression"
version = "0.1.1"
authors = ["Proxmox Support Team <support@proxmox.com>"]
edition = "2018"
license = "AGPL-3"
description = "contains compression utilitites (such as an Zip Encoder for async rust)"
exclude = [ "debian" ]
[dependencies]
anyhow = "1.0"
bytes = "1.0"
crc32fast = "1"
endian_trait = { version = "0.6" }
flate2 = "1.0"
futures = "0.3"
libc = "0.2"
tokio = { version = "1.6", features = [ "fs", "io-util"] }
walkdir = "2"
tar = "0.4"
zstd = { version = "0.6", features = []}
proxmox-time = { path = "../proxmox-time", version = "1" }
proxmox-io = { path = "../proxmox-io", version = "1", features = [ "tokio" ] }
proxmox-lang = { path = "../proxmox-lang", version = "1.1" }
[dev-dependencies]
tokio = { version = "1.6", features = [ "macros" ] }