forked from yaa110/rake-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 665 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 665 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
[package]
name = "rake"
version = "0.3.3"
authors = ["Navid <yaa110@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["rake", "algorithm", "keyword"]
repository = "https://github.com/yaa110/rake-rs"
homepage = "https://github.com/yaa110/rake-rs"
documentation = "https://docs.rs/rake"
description = "Rust implementation of Rapid Automatic Keyword Extraction (RAKE) algorithm"
categories = ["algorithms", "text-processing"]
edition = "2018"
[badges]
travis-ci = { repository = "yaa110/rake-rs" }
[dependencies]
regex = "1.4"
serde = { version = "1.0", features = ["derive"] }
lazy_static = "1.4"
[dev-dependencies]
assert_approx_eq = "1.1"