1 2 3 4 5 6 7 8 9 10 11
//! Compression algorithm implementations pub(super) mod adpcm; pub(super) mod bzip2; pub(super) mod huffman; pub(super) mod implode; pub(super) mod lzma; pub(super) mod pkware; pub mod rle; // Public for patch file handling pub(super) mod sparse; pub(super) mod zlib;