third_party_rust_strsim-rs/Cargo.toml
Ophir LOJKINE d6717dbac8 [performance] Improve the performance of damerau_levenshtein (#32)
* [performance] Improve the performance of damerau_levenshtein

My tests show the new version is approximately 2.5 times faster than
the old ones. Most of the gains come from using hashbrown for the
hashmap.

* Switch back to rust 2015 to fix CI

* Increase minimum required rust version to 1.31

* Simplify the levenshtein function
2019-04-08 17:08:20 -04:00

24 lines
693 B
TOML

[package]
name = "strsim"
version = "0.9.0"
authors = ["Danny Guo <dannyguo91@gmail.com>"]
description = """
Implementations of string similarity metrics.
Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, and Jaro-Winkler.
"""
license = "MIT"
readme = "README.md"
keywords = ["string", "similarity", "Hamming", "Levenshtein", "Jaro"]
homepage = "https://github.com/dguo/strsim-rs"
repository = "https://github.com/dguo/strsim-rs"
documentation = "https://docs.rs/strsim/"
exclude = ["/.travis.yml", "/appveyor.yml", "/dev"]
[dependencies]
hashbrown = "0.1.8"
ndarray = "0.12.1"
[badges]
travis-ci = { repository = "dguo/strsim-rs" }
appveyor = { repository = "dguo/strsim-rs" }