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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-05-11 13:39:17 +10:00 committed by GitHub
parent 62c59beca6
commit 10af9394c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 4 deletions

23
Cargo.lock generated
View file

@ -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",

View file

@ -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"