-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathCargo.toml
39 lines (35 loc) · 982 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.16.4"
authors = ["Serhii Potapov <[email protected]>"]
edition = "2021"
description = "Fast and lightweight language identification library for Rust."
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"
]
[dependencies]
hashbrown = "0.14.2"
once_cell = "1.18.0"
enum-map = { version = "2", optional = true }
serde = { version = "1", optional = true, features = ["derive"] }
arbitrary = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
serde_json = "1.0.39"
bencher = "0.1.5"
arbtest = "0.2"
[features]
dev = []
[[bench]]
name = "example"
harness = false
path = "benches/example.rs"