mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-24 14:28:42 +00:00
build(deps): bump async_zip from 0.0.16 to 0.0.17 in the deps group (#1659)
* build(deps): bump async_zip from 0.0.16 to 0.0.17 in the deps group Bumps the deps group with 1 update: [async_zip](https://github.com/Majored/rs-async-zip). Updates `async_zip` from 0.0.16 to 0.0.17 - [Release notes](https://github.com/Majored/rs-async-zip/releases) - [Commits](https://github.com/Majored/rs-async-zip/compare/v0.0.16...v0.0.17) --- updated-dependencies: - dependency-name: async_zip dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> * Fix `extract_zip_entry` generic bound 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:
parent
fe2a4d8b0c
commit
f1b7cd4430
3 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@ async-compression = { version = "0.4.4", features = [
|
|||
"bzip2",
|
||||
"tokio",
|
||||
] }
|
||||
async_zip = { version = "0.0.16", features = [
|
||||
async_zip = { version = "0.0.17", features = [
|
||||
"deflate",
|
||||
"deflate64",
|
||||
"bzip2",
|
||||
|
|
|
@ -46,7 +46,7 @@ pub(super) async fn extract_zip_entry<R>(
|
|||
extracted_files: &mut ExtractedFiles,
|
||||
) -> Result<(), DownloadError>
|
||||
where
|
||||
R: futures_io::AsyncRead + Unpin + Send + Sync,
|
||||
R: futures_io::AsyncBufRead + Unpin + Send + Sync,
|
||||
{
|
||||
// Sanitize filename
|
||||
let raw_filename = zip_reader.entry().filename();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue