q_compress 0.11.4

Good compression for numerical sequences and time series
Documentation
//! For crate-level documentation, see either
//! <https://crates.io/crates/q_compress> or
//! <https://github.com/mwlon/quantile-compression/tree/main/q_compress>.
#![allow(clippy::needless_range_loop)]
#![allow(clippy::manual_range_contains)]

#[doc = include_str!("../README.md")]
#[cfg(doctest)]
struct ReadmeDoctest;

pub use auto::{auto_compress, auto_compressor_config, auto_decompress};
pub use base_compressor::CompressorConfig;
pub use base_decompressor::DecompressorConfig;
pub use chunk_metadata::{ChunkMetadata, PrefixMetadata};
pub use constants::DEFAULT_COMPRESSION_LEVEL;
// TODO in 1.0 remove these standalone things from top level
pub use standalone::{Compressor, DecompressedItem, Decompressor};
pub use flags::Flags;
pub use prefix::Prefix;

pub mod data_types;
pub mod errors;
pub mod standalone;
pub mod wrapped;

mod auto;
mod bit_reader;
mod bit_words;
mod bit_writer;
mod bits;
mod body_decompressor;
mod chunk_metadata;
mod chunk_spec;
mod constants;
mod compression_table;
mod base_compressor;
mod base_decompressor;
mod delta_encoding;
mod flags;
mod gcd_utils;
mod huffman_decoding;
mod huffman_encoding;
mod num_decompressor;
mod prefix;
mod prefix_optimization;
mod run_len_utils;

#[cfg(test)]
mod tests;