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

#27 in Text processing

Download history 706019/week @ 2024-10-19 683015/week @ 2024-10-26 689522/week @ 2024-11-02 681159/week @ 2024-11-09 672331/week @ 2024-11-16 578723/week @ 2024-11-23 628790/week @ 2024-11-30 722316/week @ 2024-12-07 649354/week @ 2024-12-14 288835/week @ 2024-12-21 371300/week @ 2024-12-28 651258/week @ 2025-01-04 748890/week @ 2025-01-11 632049/week @ 2025-01-18 664272/week @ 2025-01-25 602149/week @ 2025-02-01

2,772,346 downloads per month
Used in 4,006 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