forked from LibertarianMessenger/whatlang-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
39 lines (34 loc) · 941 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
[package]
name = "whatlang"
version = "0.12.0"
authors = ["Sergey Potapov <[email protected]>"]
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]
github-actions = { repository = "greyblake/whatlang-rs", worklfow = "CI", branch = "master" }
[dependencies]
hashbrown = "0.7"
enum-map = { version = "0.6", optional = true }
[dev-dependencies]
serde_json = "1.0.39"
bencher = "0.1.5"
proptest = "0.9.1"
[features]
dev = []
[[bench]]
name = "example"
harness = false
path = "benches/example.rs"