A streaming compression/decompression library for rust with bindings to
miniz
Supported formats:
```toml
[dependencies.flate2] git = "https://github.com/alexcrichton/flate2-rs" ```
```rust extern crate flate2;
use std::io::MemWriter; use flate2::writer::ZlibEncoder;
fn main() { let mut e = ZlibEncoder::new(MemWriter::new(), flate2::Default); e.write(b"foo"); e.write(b"bar"); let compressed_bytes = e.finish(); } ```
```rust extern crate flate2;
use std::io::BufReader; use flate2::reader::GzDecoder;
fn main() { let mut d = GzDecoder::new(BufReader::new(b"...")); println!("{}", d.readtostring()); } ```
flate2-rs
is primarily distributed under the terms of both the MIT license and
the Apache License (Version 2.0), with portions covered by various BSD-like
licenses.
See LICENSE-APACHE, and LICENSE-MIT for details.