Rust port of myobie/htmldiff.
sh
$ cargo install htmldiff
You can download prebuilt binaries in the releases section, or create from source.
sh
$ git clone https://github.com/seikichi/htmldiff.git
$ cd htmldiff
$ cargo build --release
```sh $ cat old.html
Hello, world!
$ cat new.html
Hello, seikichi!
$ htmldiff old.html new.html
Hello, world!seikichi!
```
Add the following to your Cargo.toml file:
toml
[dependencies]
htmldiff = "0.1"
Next, call htmldiff::htmldiff
function in your code:
```rst extern crate htmldiff;
fn main() { let old = "
Hello, world!
"; let new = "Hello, seikichi!
"; println!("{}", htmldiff::htmldiff(old, new)); } ```MIT