-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
54 lines (47 loc) · 930 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "eddie"
description = """
Fast and well-tested implementations of edit distance/string similarity metrics:
Levenshtein, Damerau-Levenshtein, Hamming, Jaro, and Jaro-Winkler.
"""
version = "0.4.2"
edition = "2018"
authors = ["Ilia Schelokov <thaumant@gmail.com>"]
homepage = "http://github.com/thaumant/eddie"
repository = "http://github.com/thaumant/eddie"
documentation = "https://docs.rs/eddie/"
license = "MIT"
categories = [
"algorithms",
"text-processing",
]
keywords = [
"levenshtein",
"hamming",
"jaro",
"text",
]
[dependencies]
[dev-dependencies]
edit-distance = "2.1.0"
criterion = "0.3"
distance = "0.4"
txtdist = "0.2"
natural = "0.3"
strsim = "0.9"
rand = "0.7"
[[bench]]
name = "leven"
harness = false
[[bench]]
name = "damlev"
harness = false
[[bench]]
name = "hamming"
harness = false
[[bench]]
name = "jaro"
harness = false
[[bench]]
name = "jarwin"
harness = false