rapidgzip-core 0.2.1

Parallel gzip, zlib, and raw-DEFLATE decoder using rapidgzip's marker/window algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Building blocks for rapidgzip's speculative marker/window algorithm.
//!
//! These types are public only as a module for architectural documentation and
//! focused benchmarking; the stable decoder API exposes only validated
//! [`crate::DeflateIndex`] checkpoints, not these internal speculative blocks.

pub(crate) mod adaptive;
pub(crate) mod admission;
pub(crate) mod deflate;
mod marker;

pub use marker::{MarkerBuffer, MarkerError, Symbol, Window};