Skip to main content

sit_algos/
lib.rs

1#![feature(seek_stream_len)]
2
3#[cfg(feature = "adcr_v1")]
4pub mod adcr_v1;
5#[cfg(feature = "adcr_v3")]
6pub mod adcr_v3;
7#[cfg(feature = "arsenic")]
8pub mod arsenic;
9#[cfg(feature = "huffman")]
10pub mod huffman;
11#[cfg(any(feature = "huffman", feature = "lz_huffman"))]
12pub mod huffman_decoder;
13#[cfg(feature = "huffman_fixed")]
14pub mod huffman_fixed;
15#[cfg(any(feature = "installer", feature = "adcr_v3"))]
16pub mod installer;
17#[cfg(feature = "lmzw")]
18pub mod lmzw;
19#[cfg(feature = "lz_huffman")]
20pub mod lz_huffman;
21#[cfg(feature = "lz_huffman")]
22pub mod lzah;
23#[cfg(feature = "lzw")]
24pub mod lzw;
25#[cfg(feature = "none")]
26pub mod none;
27#[cfg(feature = "rle90")]
28pub mod rle90;