DEFLATE yourself for faster Rust ZIPs

from blog nickb.dev, | ↗ original
The Rust crate for handling ZIP files, zip-rs is quite flexible. The zip crate is compiled with builtin features to support deflated data (among other compression algorithms). This makes it incredibly easy to hit the ground running for reading and writing zips. We can disable these builtin features. This may sound undesirable, but in fact, it is...