djvu-bzz 0.17.0

Pure-Rust DjVu BZZ compressor and decompressor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# djvu-bzz

Pure-Rust DjVu BZZ compressor and decompressor.

This crate is part of the `djvu-rs` workspace. It exposes the BZZ codec used
by DjVu metadata chunks such as DIRM, NAVM, ANTz, TXTz, and FGbz.

## Features

- `std` (default) enables BZZ encoding.
- `parallel` enables parallel inverse-BWT decoding for multi-block streams.

The decoder builds with `default-features = false` for no_std consumers that
only need decompression.