compression 0.1.5

Compression libraries implemented by pure Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 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 direction;
pub(crate) mod reader;
pub(crate) mod small_bit_vec;
pub(crate) mod writer;