File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,8 @@ crc32 = ["dep:crc32fast"]
66
66
zlib = [" dep:flate2" , " flate2?/rust_backend" , " dep:thiserror" ]
67
67
# # Use the C-based zlib-ng backend, which can compress and decompress significantly faster.
68
68
zlib-ng = [" zlib" , " flate2?/zlib-ng" ]
69
- # # Use the rust-based zlib backend, which can compress and decompress significantly faster and is on par with zlib-ng or even faster.
69
+ # # Use the high-performance rust-based zlib backend en par with zlib-ng.
70
+ # # Note that this will cause duplicate symbol errors if the application also depends on `zlib`, without remediation.
70
71
zlib-rs = [" zlib" , " flate2?/zlib-rs" ]
71
72
# # Use zlib-ng via its zlib-compat API. Useful if you already need zlib for C
72
73
# # code elsewhere in your dependencies. Otherwise, use zlib-ng.
Original file line number Diff line number Diff line change @@ -264,7 +264,8 @@ fast-sha1 = ["gix-features/fast-sha1"]
264
264
# # Note that this will cause duplicate symbol errors if the application also depends on `zlib` - use `zlib-ng-compat` in that case.
265
265
zlib-ng = [" gix-features/zlib-ng" ]
266
266
267
- # # Use the rust-based zlib backend, which can compress and decompress significantly faster and is on par with zlib-ng or even faster.
267
+ # # Use the high-performance rust-based zlib backend en par with zlib-ng.
268
+ # # Note that this will cause duplicate symbol errors if the application also depends on `zlib`, without remedy.
268
269
zlib-rs = [" gix-features/zlib-rs" ]
269
270
270
271
# # Use zlib-ng via its zlib-compat API. Useful if you already need zlib for C
You can’t perform that action at this time.
0 commit comments