//! CMPRSD is a compression crate with the goal of providing
//! a wide range of compression algorithm. Currently only Huffman
//! compression has been implemented.
//!
//! It will soon be followed
//! by BWT and LZ77!
//!
//!
pub mod huffman;
pub mod util;