deflate-rs

Build Status Crates.io

Docs

An rust implementation of a DEFLATE encoder. Not a direct port, but does take some inspiration from zlib, miniz and zopfli.

So far, deflate encoding with and without zlib metadata (no zlib dictionary or gzip support yet) has been is implemented. No unsafe code has been used. Speed-wise it's not quite up to miniz-levels yet.

Usage:

Simple compression function:

``` rust use deflate::deflate_bytes;

let data = b"Some data"; let compressed = deflate_bytes(&data); ```

Using a writer:

``` rust use std::io::Write;

use deflate::Compression; use deflate::write::ZlibEncoder;

let data = b"This is some test data"; let mut encoder = ZlibEncoder::new(Vec::new(), Compression::Default); encoder.writeall(data).unwrap(); let compresseddata = encoder.finish().unwrap(); ```

Other deflate/zlib rust projects from various people

License

deflate is distributed under the terms of both the MIT and Apache 2.0 licences.

bitstream.rs is © @nwin and was released under both MIT and Apache 2.0

Some code in length_encode.rs has been ported from the miniz library, which is public domain.

The test data (src/pg11.txt) is borrowed from Project Gutenberg and is available under public domain, or the Project Gutenberg Licence