From 29506f563f63d800adb9b1a6fec463b39e72d447 Mon Sep 17 00:00:00 2001 From: Mathieu Poumeyrol Date: Fri, 28 Aug 2020 09:58:32 +0200 Subject: [PATCH] release 0.10.9 --- 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 6942404094..735b3d9c18 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.10.9-pre" +version = "0.10.9" 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 = { 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" } +tract-core = "0.10.9" +tract-hir = "0.10.9" +tract-kaldi = { optional = true, version = "0.10.9" } +tract-nnef = { optional = true, version = "0.10.9" } +tract-onnx = { optional = true, version = "0.10.9" } +tract-tensorflow = { optional = true, version = "0.10.9" } colorous = "1.0.2" serde = "1.0.110" serde_json = "1.0.53" diff --git a/core/Cargo.toml b/core/Cargo.toml index 260d83a0e6..b46354ed68 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.10.9-pre" +version = "0.10.9" 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 = { path = "../linalg" } +tract-linalg = "0.10.9" [features] default = [ ] diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 615ae72435..08f37e6fe0 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.10.9-pre" +version = "0.10.9" 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 = { path = "../core" } +tract-core = "0.10.9" [dev-dependencies] env_logger = "0.7" diff --git a/kaldi/Cargo.toml b/kaldi/Cargo.toml index 8400772b25..91c18051f8 100644 --- a/kaldi/Cargo.toml +++ b/kaldi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-kaldi" -version = "0.10.9-pre" +version = "0.10.9" authors = [ "Mathieu Poumeyrol ", "Theodore Bluche " @@ -23,4 +23,4 @@ lazy_static = "1" log = "0.4" maplit = "1" nom = "5" -tract-hir = { path = "../hir" } +tract-hir = "0.10.9" diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index 1e209f0902..998cff70e6 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.10.9-pre" +version = "0.10.9" 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 91df7bf988..06c95f6af8 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.10.9-pre" +version = "0.10.9" 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 = { path = "../core" } +tract-core = "0.10.9" walkdir = "2" diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index 93f4872b39..b0d287eb7d 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.10.9-pre" +version = "0.10.9" 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 = { path = "../hir" } -tract-nnef = { path = "../nnef" } +tract-hir = "0.10.9" +tract-nnef = "0.10.9" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7" diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 4d8ffe83f7..41e8e51b4c 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.10.9-pre" +version = "0.10.9" 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 = { path = "../hir" } +tract-hir = "0.10.9" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7"