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

#22 in Text processing

Download history 635026/week @ 2024-07-21 614986/week @ 2024-07-28 625705/week @ 2024-08-04 636251/week @ 2024-08-11 692524/week @ 2024-08-18 659305/week @ 2024-08-25 633813/week @ 2024-09-01 667773/week @ 2024-09-08 590363/week @ 2024-09-15 673183/week @ 2024-09-22 669520/week @ 2024-09-29 711360/week @ 2024-10-06 680581/week @ 2024-10-13 707925/week @ 2024-10-20 678613/week @ 2024-10-27 692703/week @ 2024-11-03

2,798,242 downloads per month
Used in 3,737 crates (139 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