]> git.proxmox.com Git - proxmox.git/blame - proxmox-compression/Cargo.toml
move common metadata to workspace
[proxmox.git] / proxmox-compression / Cargo.toml
CommitLineData
b8bf6a5c
DC
1[package]
2name = "proxmox-compression"
c7224c5f 3version = "0.1.2"
64959d9a
FG
4authors.workspace = true
5edition.workspace = true
6license.workspace = true
7repository.workspace = true
b8bf6a5c
DC
8description = "contains compression utilitites (such as an Zip Encoder for async rust)"
9
64959d9a 10exclude.workspace = true
b8bf6a5c
DC
11
12[dependencies]
13anyhow = "1.0"
14bytes = "1.0"
15crc32fast = "1"
16endian_trait = { version = "0.6" }
17flate2 = "1.0"
18futures = "0.3"
6e989a1c 19libc = "0.2"
b8bf6a5c
DC
20tokio = { version = "1.6", features = [ "fs", "io-util"] }
21walkdir = "2"
d107d0b2 22tar = "0.4"
e7e4411f 23zstd = { version = "0.6", features = []}
b8bf6a5c
DC
24
25proxmox-time = { path = "../proxmox-time", version = "1" }
26proxmox-io = { path = "../proxmox-io", version = "1", features = [ "tokio" ] }
27proxmox-lang = { path = "../proxmox-lang", version = "1.1" }
28
29[dev-dependencies]
30tokio = { version = "1.6", features = [ "macros" ] }
31