acta-core 0.1.0-alpha.1

Append-only columnar file format for time-series data
Documentation
1
2
3
4
5
6
7
8
//! Stream transform and compression algorithms.
//!
//! These are pure functions over borrowed bytes. They know nothing about
//! files, schemas, or block layouts, so a writer can reuse them unchanged.

#[cfg(feature = "zstd")]
pub(crate) mod compression;
pub(crate) mod transform;