compression 0.1.5

Compression libraries implemented by pure Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! rust-compression
//!
//! # Licensing
//! This Source Code is subject to the terms of the Mozilla Public License
//! version 2.0 (the "License"). You can obtain a copy of the License at
//! <http://mozilla.org/MPL/2.0/>.

pub(crate) mod decoder;
pub(crate) mod encoder;

// pub use decoder::{DecodeExt, DecodeIterator, Decoder};
// pub use encoder::{EncodeAction, EncodeExt, EncodeIterator, Encoder};
// pub use error::CompressionError;