1//! Delta deduplication using KMP and Rolling Hash algorithms.
23include!("deduplication/thresholds.rs");
45pub mod boundary;
67pub mod rolling_hash;
89pub mod kmp_matcher;
1011include!("deduplication/deduplicator.rs");
1213include!("deduplication/tests.rs");