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

#29 in Text processing

Download history 346992/week @ 2023-11-21 384918/week @ 2023-11-28 404208/week @ 2023-12-05 384507/week @ 2023-12-12 309531/week @ 2023-12-19 203979/week @ 2023-12-26 385630/week @ 2024-01-02 425296/week @ 2024-01-09 475607/week @ 2024-01-16 469675/week @ 2024-01-23 475488/week @ 2024-01-30 471178/week @ 2024-02-06 455936/week @ 2024-02-13 541450/week @ 2024-02-20 520845/week @ 2024-02-27 424425/week @ 2024-03-05

2,027,393 downloads per month
Used in 3,026 crates (117 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