-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.26 KB
/
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
[package]
name = "ed_join"
version = "1.1.1"
authors = ["Lucius Hu <[email protected]>"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/lebensterben/ed_join"
documentation = "https://notatall.io/ed_join/ed_join/index.html"
homepage = "https://crates.io/crates/ed_join"
description = """
A Rust Implemtation of Ed-Join Algorithm for string similarity join
"""
keywords = ["string", "similarity", "text-processing", "algorithm"]
categories = ["algorithms", "text-processing"]
exclude = ["/.travis.yml", "/.gitignore"]
edition = "2018"
[badges]
travis-ci = { repository = "lebensterben/ed_join" }
[features]
cli = ["clap", "dialoguer", "env_logger", "indicatif", "log"]
[[bin]]
name = "ed-join"
path = "src/bin.rs"
required-features = ["cli"]
[dependencies]
crossbeam-channel = "0.5.0"
edit-distance = "2.1.0"
error-chain = "0.12.1"
rayon = "1.2.0"
# optional dependencies
clap = { version = "2.33.0", optional = true }
dialoguer = { version = "0.5.0", optional = true }
env_logger = { version = "0.8.1", optional = true }
log = { version = "0.4.8", optional = true }
[dependencies.indicatif]
version = "0.16.0"
features = ["with_rayon"]
optional = true
[package.metadata.docs.rs]
rustdoc-args = ["--document-private-items"]