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

#43 in Text processing

Download history 1028041/week @ 2025-05-04 1096942/week @ 2025-05-11 1141857/week @ 2025-05-18 890647/week @ 2025-05-25 985195/week @ 2025-06-01 1095828/week @ 2025-06-08 1255416/week @ 2025-06-15 1247003/week @ 2025-06-22 985714/week @ 2025-06-29 1105697/week @ 2025-07-06 1200734/week @ 2025-07-13 1302581/week @ 2025-07-20 1229567/week @ 2025-07-27 1282210/week @ 2025-08-03 1263848/week @ 2025-08-10 1137477/week @ 2025-08-17

4,977,853 downloads per month
Used in 4,867 crates (150 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