6 stable releases

Uses old Rust 2015

2.1.2 Jun 26, 2024
2.1.0 Mar 2, 2019
2.0.1 Jan 2, 2018
2.0.0 Jul 2, 2017
1.0.0 May 1, 2015

#56 in Algorithms

Download history 9622/week @ 2024-04-03 9219/week @ 2024-04-10 10060/week @ 2024-04-17 8915/week @ 2024-04-24 8981/week @ 2024-05-01 9044/week @ 2024-05-08 7827/week @ 2024-05-15 7670/week @ 2024-05-22 8196/week @ 2024-05-29 9443/week @ 2024-06-05 9774/week @ 2024-06-12 10065/week @ 2024-06-19 10746/week @ 2024-06-26 9682/week @ 2024-07-03 14430/week @ 2024-07-10 9529/week @ 2024-07-17

46,491 downloads per month
Used in 84 crates (19 directly)

Apache-2.0

8KB

CI

edit-distance

Calculate Levenshtein distance between two strings.

The Levenshtein edit distance is a measure for the similarity between two strings. It's helpful for spelling correction, fuzzy completion, type-ahead and similar use cases.

This implementation supports Unicode.

Installation

In Cargo.toml add

[dependencies]
edit-distance = "2.1.2"

Then re-run cargo build. That fetches the dependencies and builds the code.

Usage

extern crate edit_distance;

edit_distance("kitten", "sitting"); // => 3

Development

Test changes before comitting.

cargo clean
cargo fmt --all -- --check
cargo build
cargo test

Contributing

Before sending a pull-request that goes beyond a bugfix, please open an issue to discuss. PRs without clear objective or separation of concerns aren't likely to be accepted.

History

2024-06-26 2.1.2 Fix formatting 2024-06-26 2.1.1 Replace CI badge, maintenance
2019-03-02 2.1.0 Optimize memory usage
2018-01-02 2.0.1 Update dev-dependencies
2017-07-02 2.0.0
2015-05-01 1.0.0 Release
2015-04-18 0.0.1 Initial upload

Credits

Thanks to @skade for very helpful criticism of my first rust lib.

License

APL 2.0, see LICENSE file.

No runtime deps