Fabian Grünbichler e5abc0590e define workspace dependencies in workspace
so that we no longer have to (or forget to) bump the version in multiple places.

notable changes:
- outdated versions have been unified
- proxmox-metrics -> proxmox-async no longer uses explicit empty features
  (proxmox-async doesn't provide any anyway)
- proxmox-subscription -> proxmox-http no longer uses explicit default_features
  = false (proxmox-http has an empty default feature anyway)
- missing path dependencies added (mainly proxmox-rest-server)

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

32 lines
738 B
TOML

[package]
name = "proxmox-compression"
version = "0.1.2"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "contains compression utilitites (such as an Zip Encoder for async rust)"
exclude.workspace = true
[dependencies]
anyhow.workspace = true
bytes = "1.0"
crc32fast = "1"
endian_trait.workspace = true
flate2 = "1.0"
futures.workspace = true
libc.workspace = true
tokio = { workspace = true, features = [ "fs", "io-util"] }
walkdir = "2"
tar = "0.4"
zstd.workspace = true
proxmox-time.workspace = true
proxmox-io = { workspace = true, features = [ "tokio" ] }
proxmox-lang.workspace = true
[dev-dependencies]
tokio = { workspace = true, features = [ "macros" ] }