java-diff-utils-rs 0.1.0-alpha.5

Experimental Rust port of the core diffing and patching behavior of java-diff-utils
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod myers;
pub mod myers_linear;
pub mod path_node;

// Re-export standard Myers
pub use myers::*;

// Re-export linear Myers items
pub use myers_linear::MyersDiffWithLinearSpace;
pub use myers_linear::{
    compute_diff as compute_linear_diff, compute_diff_full,
    compute_diff_with as compute_linear_diff_with, LinearWorkspace,
};
pub use path_node::{PathFormatter, PathNode};