-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
39 lines (33 loc) · 964 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 = "keyword_extraction"
version = "1.5.0"
edition = "2021"
rust-version = "1.69.0"
license = "LGPL-3.0-or-later"
readme = "README.md"
keywords = ["nlp", "text-extraction", "keyword-extraction"]
authors = ["Afonso Barracha <[email protected]>"]
publish = true
description = "Collection of algorithms for keyword extraction from text"
repository = "https://github.com/tugascript/keyword-extraction-rs"
homepage = "https://github.com/tugascript/keyword-extraction-rs"
documentation = "https://docs.rs/keyword_extraction"
[lib]
name = "keyword_extraction"
path = "src/lib.rs"
[dependencies]
unicode-segmentation = "1.12.0"
regex = "1.11.0"
rayon = { version = "1.10.0", optional = true }
[dev-dependencies]
stop-words = "0.8.0"
[features]
parallel = ["rayon"]
tf_idf = []
co_occurrence = []
rake = []
text_rank = []
yake = []
all = ["tf_idf", "co_occurrence", "rake", "text_rank", "yake"]
#DEFAULT
default = ["tf_idf", "rake", "text_rank"]