From d543e9522863d1b4f30256258ab0ac73e2906ce5 Mon Sep 17 00:00:00 2001 From: Mathieu Poumeyrol Date: Fri, 21 Aug 2020 09:05:32 +0200 Subject: [PATCH] post-release 0.10.7-pre --- cli/Cargo.toml | 14 +++++++------- core/Cargo.toml | 4 ++-- hir/Cargo.toml | 4 ++-- kaldi/Cargo.toml | 4 ++-- linalg/Cargo.toml | 2 +- nnef/Cargo.toml | 4 ++-- onnx/Cargo.toml | 6 +++--- tensorflow/Cargo.toml | 4 ++-- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ea17f62d00..01342ff3f7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.10.6" +version = "0.10.7-pre" authors = [ "Romain Liautaud ", "Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -30,12 +30,12 @@ py_literal = "0.2" rand = "0.7" regex = "1.3" readings-probe = "0.1.1" -tract-core = "0.10.6" -tract-hir = "0.10.6" -tract-kaldi = { optional = true, version = "0.10.6" } -tract-nnef = { optional = true, version = "0.10.6" } -tract-onnx = { optional = true, version = "0.10.6" } -tract-tensorflow = { optional = true, version = "0.10.6" } +tract-core = { path = "../core" } +tract-hir = { path = "../hir" } +tract-kaldi = { optional = true, path = "../kaldi" } +tract-nnef = { optional = true, path = "../nnef" } +tract-onnx = { optional = true, path = "../onnx" } +tract-tensorflow = { optional = true, path = "../tensorflow" } colorous = "1.0.2" serde = "1.0.110" serde_json = "1.0.53" diff --git a/core/Cargo.toml b/core/Cargo.toml index e7367c5604..92dcabfaa3 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.10.6" +version = "0.10.7-pre" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -30,7 +30,7 @@ dyn-clone = "1" serde = { "version" = "1.0", optional = true } serde_derive = { "version" = "1.0", optional = true } smallvec = "1" -tract-linalg = "0.10.6" +tract-linalg = { path = "../linalg" } [features] default = [ ] diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 4b41f7c537..386b9ea64a 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.10.6" +version = "0.10.7-pre" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -17,7 +17,7 @@ maintenance = { status = "actively-developed" } derive-new = "0.5" educe = "=0.4.11" # locked for rust 1.41.0 log = "0.4" -tract-core = "0.10.6" +tract-core = { path = "../core" } [dev-dependencies] env_logger = "0.7" diff --git a/kaldi/Cargo.toml b/kaldi/Cargo.toml index f9f1a9bf46..e262c536ba 100644 --- a/kaldi/Cargo.toml +++ b/kaldi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-kaldi" -version = "0.10.6" +version = "0.10.7-pre" authors = [ "Mathieu Poumeyrol ", "Theodore Bluche " @@ -23,4 +23,4 @@ lazy_static = "1" log = "0.4" maplit = "1" nom = "5" -tract-hir = "0.10.6" +tract-hir = { path = "../hir" } diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index 76908895e2..454d0efeb0 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.10.6" +version = "0.10.7-pre" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" diff --git a/nnef/Cargo.toml b/nnef/Cargo.toml index 9bbc7d7417..050cbc2877 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.10.6" +version = "0.10.7-pre" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -18,5 +18,5 @@ flate2 = "1" log = "0.4" nom = "5" tar = "0.4" -tract-core = "0.10.6" +tract-core = { path = "../core" } walkdir = "2" diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index 1f2e133a6c..d4be5ba687 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.10.6" +version = "0.10.7-pre" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -22,8 +22,8 @@ log = "0.4" num-integer = "0.1" prost = "0.6" smallvec = "1" -tract-hir = "0.10.6" -tract-nnef = "0.10.6" +tract-hir = { path = "../hir" } +tract-nnef = { path = "../nnef" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7" diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 340ee5e922..7c3eba2a01 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.10.6" +version = "0.10.7-pre" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -22,7 +22,7 @@ prost = "0.6" prost-types = "0.6" tensorflow = { version = "0", optional = true } error-chain = { version = "0.12", optional = true } -tract-hir = "0.10.6" +tract-hir = { path = "../hir" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7"