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
15
# lazippy

Pure-Rust LZMA (Lempel-Ziv-Markov chain Algorithm) encoder/decoder, part of the
[8z](https://github.com/JackDanger/8z) umbrella of pure-Rust compression codecs.

See [STATUS.md](./STATUS.md) for the current implementation state.

## Build & Test

```sh
cargo build
cargo test
cargo test -- --include-ignored   # run all tests including #[ignore] stubs
cargo bench --no-run               # verify bench targets compile
```