preflate-rs 0.6.3

Decompresses existing DEFLATE streams to allow for better compression (eg with ZStandard) 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
14
//! 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;
mod huffman_helper;

pub mod deflate_constants;

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