zipora 4.0.0

High-performance Rust implementation providing advanced data structures and compression algorithms with memory safety guarantees. Features LRU page cache, sophisticated caching layer, fiber-based concurrency, real-time compression, secure memory pools, SIMD optimizations, and complete C FFI for migration from C++.
1
2
3
4
5
6
7
8
9
mod iterators;
mod map;
mod state;
#[cfg(test)]
mod tests;
mod trie;

pub use map::{DoubleArrayTrieMap, DoubleArrayTrieMapCursor, MapRangeIter, MapValue};
pub use trie::{DoubleArrayTrie, DoubleArrayTrieCursor, RangeIter};