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

#![feature(io)]

extern crate flate2;

use std::old_io::MemWriter; use flate2::CompressionLevel; use flate2::writer::ZlibEncoder;

#[allow(unusedmustuse)]

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

Decompression

```rust,no_run

#![feature(io)]

extern crate flate2;

use std::old_io::BufReader; use flate2::reader::GzDecoder;

fn main() { let mut d = GzDecoder::new(BufReader::new(b"...")); println!("{}", d.readtostring().unwrap()); } ```

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.