Skip to content

Commit 25eb4b8

Browse files
authored
Merge pull request #195 from snipsco/task/bump-rustling
Bump rustling to 0.9.1
2 parents 9895ab5 + 077bc09 commit 25eb4b8

File tree

16 files changed

+63
-58
lines changed

16 files changed

+63
-58
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [Unreleased]
5+
### Fixed
6+
- Fix chrono issue and move to rust edition 2018 [#194](https://github.com/snipsco/rustling-ontology/pull/194)
7+
- Bump rustling to `0.9.1` [#195](https://github.com/snipsco/rustling-ontology/pull/195)
8+
49
## [0.19.1]
510
### Added
611
- [Fr] Implement datetime subtypes in French [#191](https://github.com/snipsco/rustling-ontology/pull/191)

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@ members=["values", "cli", "cli-debug", "moment", "json-utils",
1212
[dependencies]
1313
rmp-serde = "0.14"
1414
serde = { version = "1.0", features = ["derive"] }
15-
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
16-
rustling-ontology-moment = { path="moment"}
17-
rustling-ontology-values = { path="values"}
18-
rustling-ontology-grammar = { path="grammar" }
15+
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
16+
rustling-ontology-moment = { path = "moment" }
17+
rustling-ontology-values = { path = "values" }
18+
rustling-ontology-grammar = { path = "grammar" }
1919

2020
[dev-dependencies]
21-
bencher = { git="https://github.com/snipsco/bencher", rev="63910ace" }
22-
rustling-ontology-json-utils = { path="json-utils" }
21+
bencher = { git = "https://github.com/snipsco/bencher", rev="63910ace" }
22+
rustling-ontology-json-utils = { path = "json-utils" }
2323
serde_json = "1.0"
2424

2525

2626
[build-dependencies]
2727
rmp-serde = "0.14"
2828
serde = { version = "1.0", features = ["derive"] }
29-
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
30-
rustling-ontology-values = { path="values"}
31-
rustling-ontology-moment = { path="moment"}
32-
rustling-ontology-grammar = { path="grammar" }
29+
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
30+
rustling-ontology-values = { path = "values" }
31+
rustling-ontology-moment = { path = "moment" }
32+
rustling-ontology-grammar = { path = "grammar" }
3333

3434
[[bench]]
3535
name = "example"

cli-debug/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ authors = ["hdlj <[email protected]>", "Mathieu Poumeyrol <kali@zoy
55
edition = "2018"
66

77
[dependencies]
8-
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
9-
rustling-ontology-grammar = { path = "../grammar"}
10-
rustling-ontology-moment = { path = "../moment"}
11-
rustling-ontology-values = { path = "../values"}
8+
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
9+
rustling-ontology-grammar = { path = "../grammar" }
10+
rustling-ontology-moment = { path = "../moment" }
11+
rustling-ontology-values = { path = "../values" }
1212
prettytable-rs = "0.6"
1313
clap = "2"

cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2018"
77
[dependencies]
88
clap = "2"
99
prettytable-rs = "0.6"
10-
rustling-ontology = { path = ".."}
11-
rustling-ontology-json-utils = { path="../json-utils" }
12-
rustling-ontology-moment = { path = "../moment"}
10+
rustling-ontology = { path = ".." }
11+
rustling-ontology-json-utils = { path = "../json-utils" }
12+
rustling-ontology-moment = { path = "../moment" }
1313
serde_json = "1.0"

grammar/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ authors = ["hdlj <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
9-
rustling-ontology-de = { path="de"}
10-
rustling-ontology-en = { path="en"}
11-
rustling-ontology-es = { path="es"}
12-
rustling-ontology-fr = { path="fr"}
13-
rustling-ontology-pt = { path="pt"}
14-
rustling-ontology-ko = { path="ko"}
15-
rustling-ontology-zh = { path="zh"}
16-
rustling-ontology-ja = { path="ja"}
17-
rustling-ontology-it = { path="it"}
18-
rustling-ontology-values = { path="../values"}
8+
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
9+
rustling-ontology-de = { path = "de" }
10+
rustling-ontology-en = { path = "en" }
11+
rustling-ontology-es = { path = "es" }
12+
rustling-ontology-fr = { path = "fr" }
13+
rustling-ontology-pt = { path = "pt" }
14+
rustling-ontology-ko = { path = "ko" }
15+
rustling-ontology-zh = { path = "zh" }
16+
rustling-ontology-ja = { path = "ja" }
17+
rustling-ontology-it = { path = "it" }
18+
rustling-ontology-values = { path = "../values" }

grammar/de/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
9-
rustling-ontology-moment = { path="../../moment"}
10-
rustling-ontology-values = { path="../../values"}
8+
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
9+
rustling-ontology-moment = { path = "../../moment" }
10+
rustling-ontology-values = { path = "../../values" }

grammar/en/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
9-
rustling-ontology-moment = { path="../../moment"}
10-
rustling-ontology-values = { path="../../values"}
8+
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
9+
rustling-ontology-moment = { path = "../../moment" }
10+
rustling-ontology-values = { path = "../../values" }

grammar/es/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
9-
rustling-ontology-moment = { path="../../moment"}
10-
rustling-ontology-values = { path="../../values"}
8+
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
9+
rustling-ontology-moment = { path = "../../moment" }
10+
rustling-ontology-values = { path = "../../values" }

grammar/fr/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
9-
rustling-ontology-moment = { path="../../moment"}
10-
rustling-ontology-values = { path="../../values"}
8+
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
9+
rustling-ontology-moment = { path = "../../moment" }
10+
rustling-ontology-values = { path = "../../values" }

grammar/it/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
9-
rustling-ontology-moment = { path="../../moment"}
10-
rustling-ontology-values = { path="../../values"}
8+
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
9+
rustling-ontology-moment = { path = "../../moment" }
10+
rustling-ontology-values = { path = "../../values" }

0 commit comments

Comments
 (0)