forked from greyblake/whatlang-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 850 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
[package]
name = "whatlang"
version = "0.10.0"
authors = ["Sergey Potapov <blake131313@gmail.com>"]
edition = "2018"
description = "Natural language detection library. Identifies language of a given text."
keywords = ["language", "nlp", "lang", "whatlang", "text"]
license = "MIT"
repository = "https://github.com/greyblake/whatlang-rs"
homepage = "https://github.com/greyblake/whatlang-rs"
documentation = "https://docs.rs/whatlang"
readme = "README.md"
categories = ["text-processing", "algorithms"]
include = [
"src/**/*",
"test/**/*",
"Cargo.toml",
"README.md"
]
[badges]
travis-ci = { repository = "greyblake/whatlang-rs", branch = "master" }
[dependencies]
hashbrown = "0.7"
[dev-dependencies]
serde_json = "1.0.39"
bencher = "0.1.5"
proptest = "0.9.1"
[[bench]]
name = "example"
harness = false
path = "benches/example.rs"