riegeli 0.1.1

Rust implementation of the Riegeli/records file format
1
2
3
4
5
6
7
8
9
//! Transpose chunk encoding and decoding.
//!
//! This module implements `ChunkType::Transposed` (`'t'`), which decomposes
//! protobuf records column-wise by field path for dramatically better
//! compression of structured data.

pub mod decoder;
pub mod encoder;
pub mod internal;