-
Notifications
You must be signed in to change notification settings - Fork 56
/
Cargo.toml
48 lines (44 loc) · 1.33 KB
/
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
44
45
46
47
48
[package]
name = "snips-nlu-lib"
version = "0.65.6"
authors = [
"Adrien Ball <[email protected]>",
"Clement Doumouro <[email protected]>",
"Thibaut Lorrain <[email protected]>",
"Kevin Lefevre <[email protected]>"
]
repository = "https://github.com/snipsco/snips-nlu-rs"
description = "Rust implementation of Snips NLU"
edition = "2018"
[workspace]
members = [
"ffi",
"platforms/python/ffi",
]
[dependencies]
crfsuite = { git = "https://github.com/snipsco/crfsuite-rs", tag = "0.3.3" }
snips-nlu-ontology = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.67.1" }
snips-nlu-utils = { git = "https://github.com/snipsco/snips-nlu-utils", tag = "0.9.1" }
snips-nlu-parsers = { git = "https://github.com/snipsco/snips-nlu-parsers", tag = "0.4.3" }
failure = "0.1"
base64 = "0.10"
itertools = { version = "0.8", default-features = false }
log = "0.4"
lru-cache = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3"
ndarray = "0.12"
regex = "1.0"
csv = "1.0"
zip = { version = "0.5", default-features = false, features = ["deflate"] }
[dev-dependencies]
bencher = { git = "https://github.com/snipsco/bencher", rev = "63910ace" }
clap = "2.32"
dinghy-test = "0.4"
env_logger = "0.6"
maplit = "1.0"
fs_extra = "1.1"
[[bench]]
name = "nlu_engine"
harness = false