preflate-rs 0.7.6

Decompresses existing DEFLATE and PNG streams to allow for better with a more state-of-the-art compression (eg with ZStandard, Brotli) while allowing the exact original binary DEFLATE stream to be recreated by detecting the parameters used during compression.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Module for reading and writing DEFLATE streams. Streams are read in as a vector of blocks containing tokens
//! can which can be written back out as an identical DEFLATE stream.

mod bit_reader;
mod bit_writer;

pub mod deflate_constants;

pub mod deflate_reader;
pub mod deflate_token;
pub mod deflate_writer;
pub mod huffman_calc;
pub mod huffman_encoding;