A streaming compression/decompression library for rust with bindings to
miniz
Supported formats:
```toml
[dependencies] flate2 = "0.2" ```
```rust extern crate flate2;
use std::io::prelude::*; use flate2::Compression; use flate2::write::ZlibEncoder;
fn main() { let mut e = ZlibEncoder::new(Vec::new(), Compression::Default); e.write(b"foo"); e.write(b"bar"); let compressed_bytes = e.finish(); } ```
```rust,no_run extern crate flate2;
use std::io::prelude::*; use flate2::read::GzDecoder;
fn main() { let mut d = GzDecoder::new("...".asbytes()).unwrap(); let mut s = String::new(); d.readto_string(&mut s).unwrap(); println!("{}", s); } ```
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.