-
Notifications
You must be signed in to change notification settings - Fork 185
Enable window_bits and gzip functions for zlib-rs backend #520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
+341
−119
Closed
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
598cf63
Enable window_bits and gzip functions for zlib-rs backend
Copilot b4993c4
refactor
Byron 816bd26
Add integration test for `zlib-rs` specifically to test exposed APIs.
Byron ebf510e
zlib-rs: support `set_dictionary` and `set_level`
folkertdev 92af1df
update zlib-rs to 0.5.4
folkertdev c0f1163
refactor - remove unnecessary newlines
Byron acc6d2c
Merge pull request #522 from folkertdev/zlib-rs-round-2
Byron 1d9e34d
Add "presence" tests for `set_dictionary` and `set_level`.
Byron f5bd992
Make `zlib-rs` specific test general so we validate availability of f…
Byron 924636d
Address Copilot review comments
Byron 2b49642
Bump patch level to prepare for release
Byron 0934d5f
Do not expose functions with `window_bits` in `miniz_oxide`.
Byron a06ead4
Bump `zlib-rs` to v0.5.5 for important bugfix.
Byron File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,7 @@ | ||
| [package] | ||
| name = "flate2" | ||
| authors = ["Alex Crichton <[email protected]>", "Josh Triplett <[email protected]>"] | ||
| version = "1.1.7" | ||
| version = "1.1.8" | ||
| edition = "2018" | ||
| license = "MIT OR Apache-2.0" | ||
| readme = "README.md" | ||
|
|
@@ -22,7 +22,7 @@ exclude = [".*"] | |
| libz-sys = { version = "1.1.20", optional = true, default-features = false } | ||
| libz-ng-sys = { version = "1.1.16", optional = true } | ||
| # this matches the default features, but we don't want to depend on the default features staying the same | ||
| zlib-rs = { version = "0.5.3", optional = true, default-features = false, features = ["std", "rust-allocator"] } | ||
| zlib-rs = { version = "0.5.5", optional = true, default-features = false, features = ["std", "rust-allocator"] } | ||
| cloudflare-zlib-sys = { version = "0.3.6", optional = true } | ||
| miniz_oxide = { version = "0.8.5", optional = true, default-features = false, features = ["with-alloc", "simd"] } | ||
| crc32fast = "1.2.0" | ||
|
|
||
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.