tree: 22f5f77b7073e42071a477ea6283e148b5336c27 [path history] [tgz]
  1. assets/
  2. examples/
  3. src/
  4. tests/
  5. .cargo-checksum.json
  6. appveyor.yml
  7. Cargo.toml
  8. Examples.md
  9. LICENSE
  10. OWNERS
  11. README.md
  12. rustfmt.toml
third_party/rust_crates/vendor/difference-2.0.0/README.md

difference.rs

A Rust text diffing library with built-in diffing assertion.

Documentation

Examples

use difference::Changeset;

let changeset = Changeset::new("test", "tent", "");

assert_eq!(changeset.diffs, vec![
  Difference::Same("te".to_string()),
  Difference::Rem("s".to_string()),
  Difference::Add("n".to_string()),
  Difference::Same("t".to_string())
]);

Usage

Add the following to your Cargo.toml:

[dependencies]
difference = "2.0"

Now you can use the crate in your code

extern crate difference;

Using the binary

difference can also be used as a command-line application. The best way to install it is using:

$ cargo install --features=bin