#diff #semantic #cleanup #algorithm #google #likely #diff-match-patch

dissimilar

Diff library with semantic cleanup, based on Google's diff-match-patch

9 stable releases

new 1.0.8 Apr 18, 2024
1.0.7 Jul 15, 2023
1.0.6 Jan 20, 2023
1.0.5 Dec 17, 2022
1.0.1 Dec 24, 2019

#17 in Algorithms

Download history 117113/week @ 2024-01-03 119021/week @ 2024-01-10 144354/week @ 2024-01-17 139157/week @ 2024-01-24 132911/week @ 2024-01-31 155883/week @ 2024-02-07 137444/week @ 2024-02-14 140790/week @ 2024-02-21 156922/week @ 2024-02-28 160129/week @ 2024-03-06 172576/week @ 2024-03-13 171434/week @ 2024-03-20 140730/week @ 2024-03-27 152039/week @ 2024-04-03 136061/week @ 2024-04-10 108995/week @ 2024-04-17

563,831 downloads per month
Used in 518 crates (29 directly)

Apache-2.0

70KB
1.5K SLoC

Dissimilar: diff library with semantic cleanup

github crates.io docs.rs build status

This library is a port of the Diff component of Diff Match Patch to Rust. The diff implementation is based on Myers' diff algorithm but includes some semantic cleanups to increase human readability by factoring out commonalities which are likely to be coincidental.

Diff Match Patch was originally built in 2006 to power Google Docs.

[dependencies]
dissimilar = "1.0"

Compiler support: requires rustc 1.36+


Interface

Here is the entire API of the Rust implementation. It operates on borrowed strings and the return value of the diff algorithm is a vector of chunks pointing into slices of those input strings.

pub enum Chunk<'a> {
    Equal(&'a str),
    Delete(&'a str),
    Insert(&'a str),
}

pub fn diff(text1: &str, text2: &str) -> Vec<Chunk>;

License

The diff algorithm in this crate was ported to Rust using the Java and C++ implementations found at https://github.com/google/diff-match-patch as reference, and is made available here under the Apache License, Version 2.0 matching the license of the original. This entire project, including some parts unmodified from upstream and the Rust-specific modifications introduced in the course of porting the implementation, are distributed under this Apache license.

Intellectual property that is unique to the Rust implementation is additionally made available to you dually under the MIT license, if you prefer. This applies to all design choices and implementation choices not found in the upstream repo.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual Apache and MIT licensed, without any additional terms or conditions.

No runtime deps