-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 896 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
40
41
[package]
name = "yake-wasm"
version = "1.0.3"
edition = "2021"
authors = ["Kyle Fahey <[email protected]>"]
keywords = ["wasm", "yake", "keywords", "keyword extraction"]
repository = "https://github.com/quesurifn/yake-wasm"
description = "Yake (Yet Another Keyword Extractor)"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
streaming-stats = "0.1.28"
contractions = "0.5.4"
unicode-segmentation = "1.9.0"
natural = "0.3.0"
wasm-bindgen = "0.2"
js-sys = "0.3.6"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.4"
wee_alloc = "0.4.5"
serde_json = "1.0"
[dependencies.web-sys]
version = "0.3"
features = [
"console",
]
[dev-dependencies]
wasm-bindgen-test = "0.3"
[lib]
crate-type = ["cdylib"]
bench = false
path = "src/lib.rs"
[profile.release]
opt-level = 's'