zipora 3.1.2

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
//! SIMD Data Validation — CRC32C hardware-accelerated checksums.
//!
//! UTF-8 validation removed — `std::str::from_utf8` is already SIMD-optimized internally.

pub mod checksum;

pub use checksum::{crc32c, crc32c_hash, crc32c_update, crc32c_finalize, detect_crc32c_impl, Crc32cImpl};