lz4_compress/lib.rs
1//! Pure Rust implementation of LZ4 compression.
2//!
3//! A detailed explanation of the algorithm can be found [here](http://ticki.github.io/blog/how-lz4-works/).
4
5#![warn(missing_docs)]
6
7extern crate byteorder;
8#[macro_use]
9extern crate quick_error;
10
11mod decompress;
12mod compress;
13#[cfg(test)]
14mod tests;
15
16pub use decompress::decompress;
17pub use compress::compress;