14 releases

Uses old Rust 2015

0.1.13 Jun 29, 2022
0.1.12 Dec 17, 2019
0.1.11 Nov 16, 2017
0.1.10 Mar 2, 2017
0.1.4 Jul 27, 2015

#23 in Text processing

Download history 630542/week @ 2024-08-13 689837/week @ 2024-08-20 624684/week @ 2024-08-27 674811/week @ 2024-09-03 657262/week @ 2024-09-10 597316/week @ 2024-09-17 677150/week @ 2024-09-24 681451/week @ 2024-10-01 690944/week @ 2024-10-08 696106/week @ 2024-10-15 711831/week @ 2024-10-22 676554/week @ 2024-10-29 687702/week @ 2024-11-05 681170/week @ 2024-11-12 672825/week @ 2024-11-19 457371/week @ 2024-11-26

2,626,466 downloads per month
Used in 4,136 crates (140 directly)

MIT/Apache

47KB
137 lines

diff.rs

An LCS based slice and string diffing implementation.

Install

[dependencies]
diff = "0.1"

Example

extern crate diff;

fn main() {
    let left = "foo\nbar\nbaz\nquux";
    let right = "foo\nbaz\nbar\nquux";

    for diff in diff::lines(left, right) {
        match diff {
            diff::Result::Left(l)    => println!("-{}", l),
            diff::Result::Both(l, _) => println!(" {}", l),
            diff::Result::Right(r)   => println!("+{}", r)
        }
    }
}

prints

 foo
-bar
 baz
+bar
 quux

License

diff is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE, and LICENSE-MIT for details.

No runtime deps