mbrotli 0.1.1

Brotli compression in safe Rust, byte-identical to Google's reference encoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Private implementation of the compressor.
//!
//! Nothing in this tree is part of the public API: the modules here own the
//! algorithms, the bitstream layout and the SIMD dispatch, while
//! [`crate::compressor`] owns the ergonomic surface built on top of them.

pub(crate) mod bound;
pub(crate) mod dispatch;
pub(crate) mod driver;
pub(crate) mod fast;
pub(crate) mod fragment;
pub(crate) mod greedy;
pub(crate) mod hq;
pub(crate) mod rfc9841;
pub(crate) mod session;
pub(crate) mod shared;
mod stream;