-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 701 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (24 loc) · 701 Bytes
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
[package]
name = "stop-words"
version = "0.10.0"
authors = ["Chris McComb <ccmcc2012@gmail.com>"]
description = "Common stop words in many languages"
edition = "2021"
readme = "README.md"
repository = "https://github.com/cmccomb/stop-words"
homepage = "https://github.com/cmccomb/stop-words"
documentation = "https://docs.rs/stop-words"
license = "MIT OR Apache-2.0"
keywords = ["nlp", "stop-words", "text", "languages", "stopwords"]
categories = ["text-processing", "internationalization", "localization"]
[features]
default = ["iso"]
iso = []
nltk = []
constructed = []
unimplemented = []
[build-dependencies]
serde_json = {version="^1"}
[dependencies]
[dev-dependencies]
human_regex = "^0.3.0"