We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0ef276 commit edd9e0bCopy full SHA for edd9e0b
gix-features/Cargo.toml
@@ -67,6 +67,8 @@ crc32 = ["dep:crc32fast"]
67
zlib = ["dep:flate2", "flate2?/rust_backend", "dep:thiserror"]
68
## Use the C-based zlib-ng backend, which can compress and decompress significantly faster.
69
zlib-ng = ["zlib", "flate2?/zlib-ng"]
70
+## Use the rust-based zlib backend, which can compress and decompress significantly faster and is on par with zlib-ng or even faster.
71
+zlib-rs = ["zlib", "flate2?/zlib-rs"]
72
## Use zlib-ng via its zlib-compat API. Useful if you already need zlib for C
73
## code elsewhere in your dependencies. Otherwise, use zlib-ng.
74
zlib-ng-compat = ["zlib", "flate2?/zlib-ng-compat"]
0 commit comments