forked from sonos/rustling-ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1.21 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
49
50
[package]
name = "rustling-ontology"
version = "0.19.3"
authors = ["hdlj <hubert.delajonquiere@snips.net>"]
build = "build.rs"
edition = "2018"
[workspace]
members=[
"cli",
"cli-debug",
"grammar",
"grammar/de",
"grammar/en",
"grammar/es",
"grammar/fr",
"grammar/it",
"grammar/ja",
"grammar/ko",
"grammar/pt",
"grammar/zh",
"json-utils",
"moment",
"values",
]
[dependencies]
rmp-serde = "0.14"
serde = { version = "1", features = ["derive"] }
rustling = { git = "https://github.com/snipsco/rustling", tag = "0.9.1" }
rustling-ontology-moment = { path = "moment" }
rustling-ontology-values = { path = "values" }
rustling-ontology-grammar = { path = "grammar" }
[dev-dependencies]
bencher = { git = "https://github.com/snipsco/bencher", rev="63910ace" }
rustling-ontology-json-utils = { path = "json-utils" }
serde_json = "1"
[build-dependencies]
rmp-serde = "0.14"
serde = { version = "1", features = ["derive"] }
rustling = { git = "https://github.com/snipsco/rustling", tag = "0.9.1" }
rustling-ontology-values = { path = "values" }
rustling-ontology-moment = { path = "moment" }
rustling-ontology-grammar = { path = "grammar" }
[[bench]]
name = "example"
harness = false