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

#24 in Text processing

Download history 701295/week @ 2024-10-03 675201/week @ 2024-10-10 696004/week @ 2024-10-17 723577/week @ 2024-10-24 656521/week @ 2024-10-31 687680/week @ 2024-11-07 680799/week @ 2024-11-14 648079/week @ 2024-11-21 584702/week @ 2024-11-28 683798/week @ 2024-12-05 677755/week @ 2024-12-12 414955/week @ 2024-12-19 291762/week @ 2024-12-26 578765/week @ 2025-01-02 739686/week @ 2025-01-09 542065/week @ 2025-01-16

2,181,113 downloads per month
Used in 3,948 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