Skip to content

Commit

Permalink
Merge pull request #195 from snipsco/task/bump-rustling
Browse files Browse the repository at this point in the history
Bump rustling to 0.9.1
  • Loading branch information
adrienball authored Sep 11, 2019
2 parents 9895ab5 + 077bc09 commit 25eb4b8
Show file tree
Hide file tree
Showing 16 changed files with 63 additions and 58 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## [Unreleased]
### Fixed
- Fix chrono issue and move to rust edition 2018 [#194](https://github.com/snipsco/rustling-ontology/pull/194)
- Bump rustling to `0.9.1` [#195](https://github.com/snipsco/rustling-ontology/pull/195)

## [0.19.1]
### Added
- [Fr] Implement datetime subtypes in French [#191](https://github.com/snipsco/rustling-ontology/pull/191)
Expand Down
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ members=["values", "cli", "cli-debug", "moment", "json-utils",
[dependencies]
rmp-serde = "0.14"
serde = { version = "1.0", features = ["derive"] }
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="moment"}
rustling-ontology-values = { path="values"}
rustling-ontology-grammar = { path="grammar" }
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" }
bencher = { git = "https://github.com/snipsco/bencher", rev="63910ace" }
rustling-ontology-json-utils = { path = "json-utils" }
serde_json = "1.0"


[build-dependencies]
rmp-serde = "0.14"
serde = { version = "1.0", features = ["derive"] }
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-values = { path="values"}
rustling-ontology-moment = { path="moment"}
rustling-ontology-grammar = { path="grammar" }
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"
Expand Down
8 changes: 4 additions & 4 deletions cli-debug/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ authors = ["hdlj <[email protected]>", "Mathieu Poumeyrol <kali@zoy
edition = "2018"

[dependencies]
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-grammar = { path = "../grammar"}
rustling-ontology-moment = { path = "../moment"}
rustling-ontology-values = { path = "../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-grammar = { path = "../grammar" }
rustling-ontology-moment = { path = "../moment" }
rustling-ontology-values = { path = "../values" }
prettytable-rs = "0.6"
clap = "2"
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
clap = "2"
prettytable-rs = "0.6"
rustling-ontology = { path = ".."}
rustling-ontology-json-utils = { path="../json-utils" }
rustling-ontology-moment = { path = "../moment"}
rustling-ontology = { path = ".." }
rustling-ontology-json-utils = { path = "../json-utils" }
rustling-ontology-moment = { path = "../moment" }
serde_json = "1.0"
22 changes: 11 additions & 11 deletions grammar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ authors = ["hdlj <[email protected]>"]
edition = "2018"

[dependencies]
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-de = { path="de"}
rustling-ontology-en = { path="en"}
rustling-ontology-es = { path="es"}
rustling-ontology-fr = { path="fr"}
rustling-ontology-pt = { path="pt"}
rustling-ontology-ko = { path="ko"}
rustling-ontology-zh = { path="zh"}
rustling-ontology-ja = { path="ja"}
rustling-ontology-it = { path="it"}
rustling-ontology-values = { path="../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-de = { path = "de" }
rustling-ontology-en = { path = "en" }
rustling-ontology-es = { path = "es" }
rustling-ontology-fr = { path = "fr" }
rustling-ontology-pt = { path = "pt" }
rustling-ontology-ko = { path = "ko" }
rustling-ontology-zh = { path = "zh" }
rustling-ontology-ja = { path = "ja" }
rustling-ontology-it = { path = "it" }
rustling-ontology-values = { path = "../values" }
6 changes: 3 additions & 3 deletions grammar/de/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
edition = "2018"

[dependencies]
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../../moment"}
rustling-ontology-values = { path="../../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../../moment" }
rustling-ontology-values = { path = "../../values" }
6 changes: 3 additions & 3 deletions grammar/en/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
edition = "2018"

[dependencies]
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../../moment"}
rustling-ontology-values = { path="../../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../../moment" }
rustling-ontology-values = { path = "../../values" }
6 changes: 3 additions & 3 deletions grammar/es/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
edition = "2018"

[dependencies]
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../../moment"}
rustling-ontology-values = { path="../../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../../moment" }
rustling-ontology-values = { path = "../../values" }
6 changes: 3 additions & 3 deletions grammar/fr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
edition = "2018"

[dependencies]
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../../moment"}
rustling-ontology-values = { path="../../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../../moment" }
rustling-ontology-values = { path = "../../values" }
6 changes: 3 additions & 3 deletions grammar/it/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
edition = "2018"

[dependencies]
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../../moment"}
rustling-ontology-values = { path="../../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../../moment" }
rustling-ontology-values = { path = "../../values" }
6 changes: 3 additions & 3 deletions grammar/ja/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2018"

[dependencies]
regex = "1.0"
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../../moment"}
rustling-ontology-values = { path="../../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../../moment" }
rustling-ontology-values = { path = "../../values" }
6 changes: 3 additions & 3 deletions grammar/ko/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2018"
[dependencies]
failure = "0.1"
regex = "1.0"
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../../moment"}
rustling-ontology-values = { path="../../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../../moment" }
rustling-ontology-values = { path = "../../values" }
6 changes: 3 additions & 3 deletions grammar/pt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
edition = "2018"

[dependencies]
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../../moment"}
rustling-ontology-values = { path="../../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../../moment" }
rustling-ontology-values = { path = "../../values" }
6 changes: 3 additions & 3 deletions grammar/zh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors = ["hdlj <[email protected]>"]
edition = "2018"

[dependencies]
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../../moment"}
rustling-ontology-values = { path="../../values"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../../moment" }
rustling-ontology-values = { path = "../../values" }
2 changes: 1 addition & 1 deletion json-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Hubert De La Jonquiere <[email protected]>"]
edition = "2018"

[dependencies]
rustling-ontology-moment = { path="../moment" }
rustling-ontology-moment = { path = "../moment" }
rustling-ontology = { path =".." }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
4 changes: 2 additions & 2 deletions values/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2018"
log = "0.4"
failure = "0.1"
regex = "1.0"
rustling = { git="https://github.com/snipsco/rustling", tag="0.9.0" }
rustling-ontology-moment = { path="../moment"}
rustling = { git = "https://github.com/snipsco/rustling", tag="0.9.1" }
rustling-ontology-moment = { path = "../moment" }

0 comments on commit 25eb4b8

Please sign in to comment.