flate2

Build Status

Documentation

A streaming compression/decompression library for rust with bindings to miniz

Supported formats:

```toml

Cargo.toml

[dependencies.flate2] git = "https://github.com/alexcrichton/flate2-rs" ```

Compression

```rust extern crate flate2;

use std::io::MemWriter; use flate2::writer::ZlibEncoder;

#[allow(unusedmustuse)]

fn main() { let mut e = ZlibEncoder::new(MemWriter::new(), flate2::Default); e.write(b"foo"); e.write(b"bar"); let compressed_bytes = e.finish(); } ```

Decompression

```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()); } ```

License

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.