mashi_core/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3// 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!
5
6extern crate alloc;
7
8pub mod codec;
9mod predictor;
10
11pub use codec::*;