flate2-rs icon indicating copy to clipboard operation
flate2-rs copied to clipboard

DEFLATE, gzip, and zlib bindings for Rust

Results 44 flate2-rs issues
Sort by recently updated
recently updated
newest added
trafficstars

Could use an example on how to extract a .tar.gz archive file. As far as I can tell, the examples are only for vecs of bytes, and strings. Assuming this...

Hi, I have a large .gz file with many (hundreds of thousands) individual archives in the one file. Using GZDecoder works on this, for the first archive. Using MultiGZDecoder works,...

In my [zopfli implementation](https://github.com/carols10cents/zopfli), it would be useful to have your gzip [`into_header`](https://github.com/alexcrichton/flate2-rs/blob/master/src/gz.rs#L165-L212) and [`do_finish` footer](https://github.com/alexcrichton/flate2-rs/blob/master/src/gz.rs#L234-L251)) code, but without the actual compression logic. The C implementation of zopfli was actually...

I think it would help users to have documentation that clearly points people to `MultiGzDecoder` for decompressing gzipped data. I see two specific places for this: 1. On the front...

I don't know if its a gzip issue or flate2 issue, but in the `gzbuilder` example, when I open unarchive tools on my Mac, I get the original filename without...

Hi, would be nice to know the size of the extracted data, although there is an overflow after 4GB. Or is it available and have not found it?! Thanks

I am trying to stream gzipped data from an S3 object in to a flate2 decompressor but the S3 library does not return a Read, just a futures Stream. You...

Hello, so I'm working on [this crate](https://github.com/gwbres/rinex) to parse RINEX files, which most of the time come `gzip` compressed. For information, decompression is encapsulated in `src/reader.rs` for hidden/transparent operations. Things...

It's not a huge deal, but `GzDecoder::new()` has a heap allocation and if you're decompressing disjoint chunks from many readers, not being able to simply reset an existing decoder is...

Receiving zlib raw stream data from python with the "zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)" options is not rare, but there are no examples of how to use the "Decompress" object in the...