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.
In Cargo.toml add
toml
[dependencies]
edit-distance = "^1.0.0"
Then re-run cargo build
. That fetches the dependencies and builds
the code.
```rust extern crate edit_distance;
edit_distance("kitten", "sitting"); // => 3 ```
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
2015-04-30 1.0.0 Release 2015-04-18 0.0.1 Initial publication
Thanks to @skade for very helpful criticism of my first rust lib.
APL 2.0, see LICENSE file.