-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
31 lines (28 loc) · 895 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
[package]
authors = ["Maarten van Gompel <[email protected]>"]
description = "Analiticcl is an approximate string matching or fuzzy-matching system that can be used to find variants for spelling correction or text normalisation"
documentation = "https://docs.rs/analiticcl"
edition = "2021"
homepage = "https://github.com/proycon/analiticcl"
include = ["src/**/*", "LICENSE", "README.md"]
keywords = ["nlp", "text-processing", "spelling-correction", "linguistics", "spellcheck"]
license = "GPL-3.0+"
name = "analiticcl"
readme = "README.md"
repository = "https://github.com/proycon/analiticcl"
version = "0.4.7"
[[bench]]
harness = false
path = "benches/benchmarks.rs"
name = "benchmarks"
[dependencies]
bitflags = "1.3.2"
clap = "2.34.0"
ibig = "0.3.6"
num-traits = "0.2.19"
rayon = "1.10.0"
rustfst = "1.1.2"
sesdiff = "0.3.1"
simple-error = "0.3.1"
[dev-dependencies]
criterion = "0.3.6"