Update async-compression to 0.4.23

Our manual usage of the `xz2/static` blocks updates of async-compression as they switched from the unmaintained lzma-sys to liblzma-sys.
This commit is contained in:
konstin 2025-06-02 13:27:43 +02:00
parent b5e7ad2c6d
commit 3cd2b0b7b4
3 changed files with 36 additions and 38 deletions

View file

@ -26,6 +26,7 @@ async_zip = { workspace = true }
blake2 = { workspace = true }
fs-err = { workspace = true, features = ["tokio"] }
futures = { workspace = true }
liblzma-sys = { workspace = true }
md-5 = { workspace = true }
rayon = { workspace = true }
reqwest = { workspace = true }
@ -35,13 +36,12 @@ thiserror = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true, features = ["compat"] }
tracing = { workspace = true }
xz2 = { workspace = true }
zip = { workspace = true }
[features]
default = []
# Avoid a liblzma.so dependency
static = ["xz2/static"]
static = ["liblzma-sys/static"]
[package.metadata.cargo-shear]
ignored = ["xz2"]
ignored = ["liblzma-sys"]