2015-02-10 02:02:54 +00:00
|
|
|
[package]
|
|
|
|
name = "strsim"
|
2020-01-31 14:42:13 +00:00
|
|
|
version = "0.10.0"
|
|
|
|
authors = ["Danny Guo <danny@dannyguo.com>"]
|
2015-02-10 02:02:54 +00:00
|
|
|
description = """
|
2020-01-31 14:42:13 +00:00
|
|
|
Implementations of string similarity metrics. Includes Hamming, Levenshtein,
|
|
|
|
OSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice.
|
2015-02-10 02:02:54 +00:00
|
|
|
"""
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2016-12-31 14:45:44 +00:00
|
|
|
keywords = ["string", "similarity", "Hamming", "Levenshtein", "Jaro"]
|
2015-02-10 02:02:54 +00:00
|
|
|
homepage = "https://github.com/dguo/strsim-rs"
|
|
|
|
repository = "https://github.com/dguo/strsim-rs"
|
2016-12-31 14:45:44 +00:00
|
|
|
documentation = "https://docs.rs/strsim/"
|
2020-01-31 14:42:13 +00:00
|
|
|
exclude = ["/.github", "/dev"]
|