Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ deflate-flate2 = ["_deflate-any", "dep:flate2"]
deflate-flate2-zlib-rs = ["deflate-flate2", "flate2/zlib-rs"]
# Pull in flate2 and the zlib backend; only use this if you need a dynamically linked system zlib
deflate-flate2-zlib = ["deflate-flate2", "flate2/zlib"]
# Pull in flate2 and the zlib-ng backend; a modern fork of zlib
deflate-flate2-zlib-ng = ["deflate-flate2", "flate2/zlib-ng"]
# Pull in flate2 and the zlib-ng backend with a zlib-compatible API
deflate-flate2-zlib-ng-compat = ["deflate-flate2", "flate2/zlib-ng-compat"]
# Pull in zopfli (write-only DEFLATE, slower than flate2 with better compression ratios)
deflate-zopfli = ["dep:zopfli", "_deflate-any"]
jiff-02 = ["dep:jiff"]
Expand Down
Loading