Some internal refactorings

This commit is contained in:
Armin Ronacher 2021-02-02 20:15:31 +01:00
parent 4b85e70f91
commit 34e5b3d571
8 changed files with 174 additions and 157 deletions

View file

@ -23,9 +23,9 @@ mod replace;
use std::hash::Hash;
use std::ops::{Index, Range};
pub use capture::*;
pub use hook::*;
pub use replace::*;
pub use capture::{get_diff_ratio, group_diff_ops, Capture, DiffOp, DiffTag};
pub use hook::DiffHook;
pub use replace::Replace;
// actual diffing algorithms
pub mod myers;