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
10
//! Chunk types.
//!
//! - [`Chunk`] - Content-defined chunk with data, offset, hash
//! - [`ChunkHash`] - 32-byte cryptographic hash

mod data;
mod hash;

pub use data::Chunk;
pub use hash::ChunkHash;