From 10af9394c40e6505fafd59a81643291de81896ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 May 2023 13:39:17 +1000 Subject: [PATCH] Bump async-compression from 0.3.15 to 0.4.0 (#1043) Bumps [async-compression](https://github.com/Nullus157/async-compression) from 0.3.15 to 0.4.0. - [Release notes](https://github.com/Nullus157/async-compression/releases) - [Changelog](https://github.com/Nullus157/async-compression/blob/main/CHANGELOG.md) - [Commits](https://github.com/Nullus157/async-compression/compare/0.3.15...async-compression-v0.4.0) --- updated-dependencies: - dependency-name: async-compression dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 23 ++++++++++++++++++++--- crates/binstalk-downloader/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc1fb7ac..49409cdb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,6 +120,23 @@ dependencies = [ "zstd-safe 5.0.2+zstd.1.5.2", ] +[[package]] +name = "async-compression" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11" +dependencies = [ + "bzip2", + "flate2", + "futures-core", + "memchr", + "pin-project-lite", + "tokio", + "xz2", + "zstd 0.12.3+zstd.1.5.2", + "zstd-safe 6.0.5+zstd.1.5.4", +] + [[package]] name = "async-trait" version = "0.1.68" @@ -137,7 +154,7 @@ version = "0.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "795310de3218cde15219fc98c1cf7d8fe9db4865aab27fcf1d535d6cb61c6b54" dependencies = [ - "async-compression", + "async-compression 0.3.15", "crc32fast", "futures-util", "log", @@ -235,7 +252,7 @@ dependencies = [ name = "binstalk-downloader" version = "0.5.0" dependencies = [ - "async-compression", + "async-compression 0.4.0", "async-trait", "async_zip", "binstalk-types", @@ -1764,7 +1781,7 @@ version = "0.11.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91" dependencies = [ - "async-compression", + "async-compression 0.3.15", "base64 0.21.0", "bytes", "encoding_rs", diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index c23bef75..5c7ad6f6 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -11,7 +11,7 @@ license = "GPL-3.0" [dependencies] async-trait = "0.1.68" -async-compression = { version = "0.3.15", features = ["gzip", "zstd", "xz", "bzip2", "tokio"] } +async-compression = { version = "0.4.0", features = ["gzip", "zstd", "xz", "bzip2", "tokio"] } async_zip = { version = "0.0.15", features = ["deflate", "bzip2", "lzma", "zstd", "xz", "tokio"] } binstalk-types = { version = "0.4.0", path = "../binstalk-types" } bytes = "1.4.0"