Skip to main content

ralph_workflow/json_parser/
deduplication.rs

1//! Delta deduplication using KMP and Rolling Hash algorithms.
2
3include!("deduplication/thresholds.rs");
4
5pub mod boundary;
6
7pub mod rolling_hash;
8
9pub mod kmp_matcher;
10
11include!("deduplication/deduplicator.rs");
12
13include!("deduplication/tests.rs");