A Rust text diffing library with built-in diffing assertion.
```rust use difference::Changeset;
let changeset = Changeset::new("test", "tent", "");
asserteq!(changeset.diffs, vec![ Difference::Same("te".tostring()), Difference::Rem("s".tostring()), Difference::Add("n".tostring()), Difference::Same("t".to_string()) ]); ```
Add the following to your Cargo.toml:
toml
[dependencies]
difference = "2.0"
Now you can use the crate in your code
rust
extern crate difference;
difference can also be used as a command-line application. The best way to install it is using:
sh
$ cargo install --features=bin