diff --git a/Cargo.toml b/Cargo.toml index 7c5099118..a46f47021 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]