Skip to content

Commit

Permalink
Simplify zip feature requirements (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek authored May 26, 2024
1 parent b294020 commit 9364df4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ jobs:
os: windows-2022
# macOS
- target: aarch64-apple-darwin
os: macos-12
os: macos-14
test: true
- target: x86_64-apple-darwin
os: macos-12
test: true
Expand Down
8 changes: 2 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ os_pipe = "1.1.5"
reqwest = { version = "0.12.4", features = ["blocking", "rustls-tls"], default-features = false }
tar = "0.4.40"
tempfile = "3.10.1"
# Remove dependence on CMake by avoiding libz-ng-sys, see:
# https://github.com/rust-lang/libz-sys/pull/174
zip = { version = "2.1.0", features = ["aes-crypto", "bzip2", "deflate", "deflate64", "deflate-zopfli", "lzma", "time", "zstd"], default-features = false }
zip = "2.1.0"
zstd = "0.13.1"

[build-dependencies]
Expand All @@ -34,9 +32,7 @@ rand = "0.8.5"
regex = "1.8.1"
reqwest = { version = "0.12.4", features = ["blocking", "rustls-tls"], default-features = false }
tar = "0.4.40"
# Remove dependence on CMake by avoiding libz-ng-sys, see:
# https://github.com/rust-lang/libz-sys/pull/174
zip = { version = "2.1.0", features = ["aes-crypto", "bzip2", "deflate", "deflate64", "deflate-zopfli", "lzma", "time", "zstd"], default-features = false }
zip = "2.1.0"

[profile.release]
panic = "abort"
Expand Down

0 comments on commit 9364df4

Please sign in to comment.