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

#26 in Text processing

Download history 521176/week @ 2024-03-14 525635/week @ 2024-03-21 471141/week @ 2024-03-28 500343/week @ 2024-04-04 488867/week @ 2024-04-11 501994/week @ 2024-04-18 499321/week @ 2024-04-25 517305/week @ 2024-05-02 490614/week @ 2024-05-09 504942/week @ 2024-05-16 506178/week @ 2024-05-23 601812/week @ 2024-05-30 562655/week @ 2024-06-06 583826/week @ 2024-06-13 596738/week @ 2024-06-20 509021/week @ 2024-06-27

2,374,600 downloads per month
Used in 3,322 crates (131 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