1#![cfg_attr(not(feature = "std"), no_std)]
23// The code in this file is heavily inspired and modified from the PAQ range of compressors.
4// Go to http://mattmahoney.net/dc/ to learn more!
56extern crate alloc;
78pub mod codec;
9mod predictor;
1011pub use codec::*;