mothcdc 0.7.2

Fast content-defined chunking that stores repeated data with fewer records.
Documentation
[package]
name = "mothcdc"
version = "0.7.2"
authors = ["Russell Romney"]
license = "Zlib"
repository = "https://github.com/russellromney/mothcdc"
readme = "README.md"
keywords = ["cdc", "chunking", "deduplication"]
categories = ["algorithms", "compression"]
description = "Fast content-defined chunking that stores repeated data with fewer records."
edition = "2024"
# 1.89 because the x86 AVX-512 intrinsics in src/x86_64.rs stabilized in 1.89
# (the crate does not build on x86 below that). Other targets only need 1.85.
rust-version = "1.89"
exclude = ["assets", "tools"]

[features]
# Minimal C API for embedding in external harnesses (see src/capi.rs).
capi = []

[dev-dependencies]
rand = "0.9.2"
fastcdc = "4.0.1"
foldhash = "0.2.0"
proptest = "1"
criterion = "0.5"

[dependencies]

[[bench]]
name = "throughput"
harness = false