Bump async_zip from 0.0.12 to 0.0.13 (#949)

* Bump async_zip from 0.0.12 to 0.0.13

Bumps [async_zip](https://github.com/Majored/rs-async-zip) from 0.0.12 to 0.0.13.
- [Release notes](https://github.com/Majored/rs-async-zip/releases)
- [Commits](https://github.com/Majored/rs-async-zip/commits)

---
updated-dependencies:
- dependency-name: async_zip
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix compilation

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
dependabot[bot] 2023-03-27 14:44:03 +11:00 committed by GitHub
parent 4af092f848
commit 875747f7ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 9 deletions

View file

@ -12,7 +12,7 @@ license = "GPL-3.0"
[dependencies]
async-trait = "0.1.68"
async-compression = { version = "0.3.15", features = ["gzip", "zstd", "xz", "bzip2", "tokio"] }
async_zip = { version = "0.0.12", features = ["deflate", "bzip2", "lzma", "zstd", "xz"] }
async_zip = { version = "0.0.13", features = ["deflate", "bzip2", "lzma", "zstd", "xz", "tokio"] }
binstalk-types = { version = "0.3.0", path = "../binstalk-types" }
bytes = "1.4.0"
bzip2 = "0.4.4"
@ -20,6 +20,7 @@ compact_str = "0.7.0"
digest = "0.10.6"
flate2 = { version = "1.0.25", default-features = false }
futures-lite = { version = "1.12.0", default-features = false }
futures-util = "0.3.27"
generic-array = "0.14.6"
httpdate = "1.0.2"
reqwest = { version = "0.11.15", features = ["stream", "gzip", "brotli", "deflate"], default-features = false }