Skip to content

Commit

Permalink
Bump zip from 0.6.6 to 1.1.1 (#1611)
Browse files Browse the repository at this point in the history
* Bump zip from 0.6.6 to 1.1.1

Bumps [zip](https://github.com/Pr0methean/zip) from 0.6.6 to 1.1.1.
- [Changelog](https://github.com/Pr0methean/zip/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Pr0methean/zip/commits)

---
updated-dependencies:
- dependency-name: zip
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Jones <[email protected]>
  • Loading branch information
dependabot[bot] and ascjones authored Apr 22, 2024
1 parent b23a36e commit 6c5930b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
25 changes: 23 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ term_size = "0.3.2"
url = { version = "2.5.0", features = ["serde"] }
wasm-opt = { version = "=0.116.1", default-features = false }
which = "6.0.1"
zip = { version = "0.6.6", default-features = false }
zip = { version = "1.1.1", default-features = false }
strum = { version = "0.26", features = ["derive"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1"
Expand All @@ -53,7 +53,7 @@ uzers = "0.11"
[build-dependencies]
anyhow = "1.0.81"
walkdir = "2.5.0"
zip = { version = "0.6.6", default-features = false }
zip = { version = "1.1.1", default-features = false }

[dev-dependencies]
pretty_assertions = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/build/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ fn zip_dir(src_dir: &Path, dst_file: &Path, method: CompressionMethod) -> Result
let it = walkdir.into_iter().filter_map(|e| e.ok());

let mut zip = ZipWriter::new(file);
let options = FileOptions::default()
let options = FileOptions::<()>::default()
.compression_method(method)
.unix_permissions(DEFAULT_UNIX_PERMISSIONS);

Expand Down

0 comments on commit 6c5930b

Please sign in to comment.