rapidgzip-core 0.1.0

Parallel, multi-member gzip decoder based on the rapidgzip marker/window algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
//! 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 does not expose block indexes.

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

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