Add compaction support (#22)
This commit is contained in:
parent
ddb73d8351
commit
7e628d78d8
9 changed files with 712 additions and 19 deletions
|
|
@ -34,17 +34,20 @@
|
|||
//! [`capture_diff_slices`](crate::capture_diff_slices).
|
||||
|
||||
mod capture;
|
||||
mod compact;
|
||||
mod hook;
|
||||
mod replace;
|
||||
mod utils;
|
||||
pub(crate) mod utils;
|
||||
|
||||
use std::hash::Hash;
|
||||
use std::ops::{Index, Range};
|
||||
use std::time::Instant;
|
||||
|
||||
pub use capture::Capture;
|
||||
pub use compact::Compact;
|
||||
pub use hook::{DiffHook, NoFinishHook};
|
||||
pub use replace::Replace;
|
||||
pub use utils::IdentifyDistinct;
|
||||
|
||||
#[doc(no_inline)]
|
||||
pub use crate::Algorithm;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue