-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4,602 changed files
with
2,432 additions
and
652 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,19 @@ jobs: | |
toolchain: nightly | ||
override: true | ||
profile: minimal | ||
- name: Close old release PR | ||
run: | | ||
# List all opened PRs which head branch starts with "release-plz-" | ||
release_pr=$(gh pr list --state='open' --json number,headRefName --jq '.[] | select(.headRefName | startswith("release-plz-")) | .number') | ||
# Close the release PR if there is one | ||
if [[ -n "$release_pr" ]]; then | ||
echo "Closing old release PR $release_pr" | ||
gh pr close $release_pr | ||
else | ||
echo "No open release PR" | ||
fi | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_PAT }} | ||
- name: Run release-plz | ||
uses: MarcoIeni/[email protected] | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
Pull requests are welcome, but they're subject to some requirements: | ||
|
||
* They must build against the MSRV, the latest stable Rust version, and the nightly Rust version, both with `--no-default-features` and with `--all-features`. | ||
* They must pass fuzz tests (see the Actions tab). | ||
* Commit messages must conform to [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and start with | ||
one of the types specified by the [Angular convention](https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#type). | ||
* All commits must be signed. | ||
Pull requests are welcome, but they're subject to some requirements that a lot of them don't meet. See https://github.com/zip-rs/zip2/raw/master/pull_request_template.md for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zip" | ||
version = "1.1.3" | ||
version = "1.2.2" | ||
authors = [ | ||
"Mathijs van de Nes <[email protected]>", | ||
"Marli Frost <[email protected]>", | ||
|
@@ -23,18 +23,22 @@ time = { version = "0.3.36", default-features = false } | |
|
||
[dependencies] | ||
aes = { version = "0.8.4", optional = true } | ||
byteorder = "1.5.0" | ||
bzip2 = { version = "0.4.4", optional = true } | ||
chrono = { version = "0.4.38", optional = true } | ||
constant_time_eq = { version = "0.3.0", optional = true } | ||
crc32fast = "1.4.0" | ||
displaydoc = { version = "0.2.4", default-features = false } | ||
flate2 = { version = "1.0.28", default-features = false, optional = true } | ||
indexmap = "2" | ||
hmac = { version = "0.12.1", optional = true, features = ["reset"] } | ||
pbkdf2 = { version = "0.12.2", optional = true } | ||
rand = { version = "0.8.5", optional = true } | ||
sha1 = { version = "0.10.6", optional = true } | ||
thiserror = "1.0.48" | ||
time = { workspace = true, optional = true, features = [ | ||
"std", | ||
] } | ||
zeroize = { version = "1.6.0", optional = true, features = ["zeroize_derive"] } | ||
zstd = { version = "0.13.1", optional = true, default-features = false } | ||
zopfli = { version = "0.8.0", optional = true } | ||
deflate64 = { version = "0.1.8", optional = true } | ||
|
@@ -52,8 +56,10 @@ getrandom = { version = "0.2.14", features = ["js"] } | |
walkdir = "2.5.0" | ||
time = { workspace = true, features = ["formatting", "macros"] } | ||
anyhow = "1" | ||
clap = { version = "=4.4.18", features = ["derive"] } | ||
|
||
[features] | ||
aes-crypto = ["aes", "constant_time_eq", "hmac", "pbkdf2", "sha1"] | ||
aes-crypto = ["aes", "constant_time_eq", "hmac", "pbkdf2", "sha1", "rand", "zeroize"] | ||
chrono = ["chrono/default"] | ||
_deflate-any = [] | ||
deflate = ["flate2/rust_backend", "_deflate-any"] | ||
|
@@ -85,3 +91,7 @@ harness = false | |
[[bench]] | ||
name = "read_metadata" | ||
harness = false | ||
|
||
[[bench]] | ||
name = "merge_archive" | ||
harness = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.