lazippy 0.0.1

Pure-Rust LZMA (Lempel-Ziv-Markov chain Algorithm), part of the 8z umbrella
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! lazippy — Pure-Rust LZMA (Lempel-Ziv-Markov chain Algorithm), part of the 8z umbrella.
//!
//! All encode/decode functions currently return [`LazippyError::NotYetImplemented`].
//! The range coder is the next piece to implement; see STATUS.md.

#![deny(unsafe_op_in_unsafe_fn)]

pub mod decode;
pub mod encode;
pub mod error;
pub mod range_coder;

#[cfg(test)]
mod tests;