libflate
libflate copied to clipboard
A Rust implementation of DEFLATE algorithm and related formats (ZLIB, GZIP)
Hi there, I was thinking about opening up a pull request with convenience functions, and was wondering if the maintainers of this crate would be open to merging such a...
I'm using `zip-rs` with rayon to zip many files concurrently (I think 16x? Whatever rayon ends up using on this machine) This works fine with compression level store, and with...
impl Drop
The `Encoder`s should have `impl Drop` that finishes the compressed stream upon `drop()`. [`BufWriter`](https://doc.rust-lang.org/std/io/struct.BufWriter.html) does something similar (flushes its buffer upon `drop()`). My use case is `Write` trait objects. Consider...