lcs
A library for finding longest common substrings. You can also use this library to calculate a diff between two sequences.
Example
extern crate lcs;
let a: = "a--b---c".chars.collect;
let b: = "abc".chars.collect;
let table = new;
let lcs = table.longest_common_subsequence;
assert_eq!;