-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (37 loc) · 939 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
42
43
[[bin]]
name="rsnltk_main"
path="src/main.rs"
[package]
name = "rsnltk"
version = "0.1.3"
edition = "2021"
description = "Rust-based Natural Language Toolkit"
readme = "README.md"
repository = "https://github.com/dhchenx/rsnltk/"
documentation = "https://docs.rs/crate/rsnltk/latest"
license = "MIT"
keywords = [ "nltk", "Stanza","natural-language","text-analysis","semantics"]
categories = ["text-processing","parsing"]
exclude=[
"data",
".idea",
"target",
"examples",
"experiments"
]
[lib]
crate-type=["cdylib","rlib"]
name="rsnltk"
path= "src/lib.rs"
[dependencies]
natural = { version = "0.4.0", features = ["serde_support"]}
serde = "1.0"
whatlang = "0.12.0"
yn = "0.1.1"
unicode-segmentation = "1.8.0"
ndarray = "0.15.4"
word2vec = "0.3.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.pyo3]
version = "0.15.1"
features = ["auto-initialize"]