-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #114 from snipsco/release/0.63.0
Release 0.63.0
- Loading branch information
Showing
153 changed files
with
242,291 additions
and
242,184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
|
||
target/ | ||
Cargo.lock | ||
/Cargo.toml | ||
**/*.rs.bk | ||
|
||
## Idea | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
#!/bin/bash | ||
set -ev | ||
|
||
source .travis/common.sh | ||
|
||
echo ' | ||
[workspace] | ||
members=[ | ||
"snips-nlu-ffi", | ||
"snips-nlu-ffi/python/snips-nlu-python-ffi", | ||
"snips-nlu-lib" | ||
]' > Cargo.toml | ||
|
||
echo "Replacing snips-nlu-ffi url for local version" | ||
perl -p -i -e "s/^snips-nlu-ffi = .*\$/snips-nlu-ffi = { path = \"..\/..\" \}/g" snips-nlu-ffi/python/snips-nlu-python-ffi/Cargo.toml | ||
perl -p -i -e \ | ||
"s/^snips-nlu-ffi = .*\$/snips-nlu-ffi = { path = \"..\/..\/..\/ffi\" \}/g" \ | ||
platforms/python/ffi/Cargo.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "snips-nlu-lib" | ||
version = "0.62.0" | ||
version = "0.63.0" | ||
authors = [ | ||
"Adrien Ball <[email protected]>", | ||
"Clement Doumouro <[email protected]>", | ||
|
@@ -9,12 +9,20 @@ authors = [ | |
] | ||
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", rev = "30b2ea6" } | ||
snips-nlu-ontology = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.62.0" } | ||
snips-nlu-ontology-parsers = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.62.0" } | ||
snips-nlu-utils = { git = "https://github.com/snipsco/snips-nlu-utils", tag = "0.7.0" } | ||
crfsuite = { git = "https://github.com/snipsco/crfsuite-rs", rev = "91fda4b" } | ||
snips-nlu-ontology = { git = "https://github.com/snipsco/snips-nlu-ontology", tag = "0.63.1" } | ||
snips-nlu-parsers = { git = "https://github.com/snipsco/snips-nlu-parsers", tag = "0.1.2" } | ||
snips-nlu-utils = { git = "https://github.com/snipsco/snips-nlu-utils", tag = "0.7.1" } | ||
failure = "0.1" | ||
base64 = "0.9" | ||
itertools = { version = "0.7", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.