chunkrs 0.9.0

A high-performance, deterministic, flexible and portable zero-copy streaming Content-Defined Chunking (CDC) and hashing infrastructure library. Bytes in → Chunks & hashes out
Documentation
1
2
3
4
5
6
7
8
9
//! Content-Defined Chunking (CDC) algorithms.
//!
//! This module is private to the crate and not exposed in the public API.

mod fastcdc;
mod tables;

// Re-export for use within the crate (cdc module is private, so pub is crate-local)
pub use fastcdc::FastCdc;