From 47e83dbbebcf0bec1dca741ce24d11874a8c8364 Mon Sep 17 00:00:00 2001 From: Mathieu Poumeyrol Date: Tue, 16 Jan 2024 16:30:25 +0100 Subject: [PATCH] release 0.21.0 --- api/Cargo.toml | 2 +- api/ffi/Cargo.toml | 6 +++--- api/proxy/Cargo.toml | 6 +++--- api/proxy/sys/Cargo.toml | 4 ++-- api/rs/Cargo.toml | 14 +++++++------- cli/Cargo.toml | 18 +++++++++--------- examples/keras-tract-tf2/Cargo.toml | 2 +- examples/onnx-mobilenet-v2/Cargo.toml | 2 +- examples/pytorch-albert-v2/Cargo.toml | 2 +- examples/pytorch-resnet/Cargo.toml | 2 +- examples/tensorflow-mobilenet-v2/Cargo.toml | 2 +- examples/tflite-mobilenet-v3/Cargo.toml | 2 +- extra/Cargo.toml | 4 ++-- harness/core-proptest-pulse/Cargo.toml | 2 +- harness/lstm-proptest-onnx-vs-tf/Cargo.toml | 4 ++-- harness/onnx-proptest/Cargo.toml | 2 +- harness/tf-inceptionv3/Cargo.toml | 2 +- harness/tf-mobilenet-v2/Cargo.toml | 2 +- harness/tf-moz-deepspeech/Cargo.toml | 2 +- harness/tfl-mobilenet-v2-q/Cargo.toml | 2 +- hir/Cargo.toml | 2 +- libcli/Cargo.toml | 8 ++++---- onnx-opl/Cargo.toml | 2 +- onnx/Cargo.toml | 6 +++--- pulse-opl/Cargo.toml | 2 +- pulse/Cargo.toml | 4 ++-- tensorflow/Cargo.toml | 6 +++--- test-rt/suite-onnx/Cargo.toml | 4 ++-- test-rt/test-f16/Cargo.toml | 4 ++-- test-rt/test-nnef-cycle/Cargo.toml | 2 +- test-rt/test-onnx-core/Cargo.toml | 2 +- test-rt/test-onnx-core/debug-utils/Cargo.toml | 2 +- test-rt/test-tflite/Cargo.toml | 4 ++-- tflite/Cargo.toml | 2 +- 34 files changed, 66 insertions(+), 66 deletions(-) diff --git a/api/Cargo.toml b/api/Cargo.toml index d9a041b831..753beb3d65 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-api" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" diff --git a/api/ffi/Cargo.toml b/api/ffi/Cargo.toml index d8341fa047..00df3ef093 100644 --- a/api/ffi/Cargo.toml +++ b/api/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-ffi" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, neural network inference" @@ -23,5 +23,5 @@ anyhow.workspace = true flate2.workspace = true serde.workspace = true serde_json.workspace = true -tract-api = { path = ".." , version = "=0.20.23-pre" } -tract-rs = { path = "../rs" , version = "=0.20.23-pre" } +tract-api = { path = ".." , version = "=0.21.0" } +tract-rs = { path = "../rs" , version = "=0.21.0" } diff --git a/api/proxy/Cargo.toml b/api/proxy/Cargo.toml index 95c68c17f4..fcf1c1973a 100644 --- a/api/proxy/Cargo.toml +++ b/api/proxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-proxy" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -17,8 +17,8 @@ anyhow.workspace = true boow.workspace = true home.workspace = true ndarray.workspace = true -tract-api = { path = ".." , version = "=0.20.23-pre" } -tract-proxy-sys = { path = "sys", version = "=0.20.23-pre" } +tract-api = { path = ".." , version = "=0.21.0" } +tract-proxy-sys = { path = "sys", version = "=0.21.0" } [dev-dependencies] reqwest.workspace = true diff --git a/api/proxy/sys/Cargo.toml b/api/proxy/sys/Cargo.toml index e2de97fe05..f00137c03f 100644 --- a/api/proxy/sys/Cargo.toml +++ b/api/proxy/sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-proxy-sys" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -14,7 +14,7 @@ include = [ "Cargo.toml", "src/**/*.rs", "LICENSE*", "build.rs", "tract.h" ] [dependencies] -tract-ffi = { path = "../../ffi" , version = "=0.20.23-pre" } +tract-ffi = { path = "../../ffi" , version = "=0.21.0" } [build-dependencies] bindgen.workspace = true diff --git a/api/rs/Cargo.toml b/api/rs/Cargo.toml index ac7e7e980b..84dc487629 100644 --- a/api/rs/Cargo.toml +++ b/api/rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-rs" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -18,13 +18,13 @@ boow.workspace = true flate2.workspace = true half.workspace = true ndarray.workspace = true -tract-api = { path = ".." , version = "=0.20.23-pre" } +tract-api = { path = ".." , version = "=0.21.0" } tract-nnef = { path = "../../nnef/" , version = "=0.21.0" } -tract-onnx-opl = { path = "../../onnx-opl/" , version = "=0.20.23-pre" } -tract-onnx = { path = "../../onnx/" , version = "=0.20.23-pre" } -tract-extra = { path = "../../extra/" , version = "=0.20.23-pre" } -tract-pulse = { path = "../../pulse/" , version = "=0.20.23-pre" } -tract-libcli = { path = "../../libcli" , version = "=0.20.23-pre" } +tract-onnx-opl = { path = "../../onnx-opl/" , version = "=0.21.0" } +tract-onnx = { path = "../../onnx/" , version = "=0.21.0" } +tract-extra = { path = "../../extra/" , version = "=0.21.0" } +tract-pulse = { path = "../../pulse/" , version = "=0.21.0" } +tract-libcli = { path = "../../libcli" , version = "=0.21.0" } serde_json.workspace = true [dev-dependencies] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 129b942e9f..df7bc8cc25 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.20.23-pre" +version = "0.21.0" authors = [ "Romain Liautaud ", "Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -35,15 +35,15 @@ scan_fmt.workspace = true serde.workspace = true serde_json.workspace = true tract-core = { version = "=0.21.0", path = "../core" } -tract-hir = { version = "=0.20.23-pre", path = "../hir" } +tract-hir = { version = "=0.21.0", path = "../hir" } tract-nnef = { version = "=0.21.0", path = "../nnef" } -tract-libcli = { version = "=0.20.23-pre", path = "../libcli" } -tract-extra = { optional = true, version = "=0.20.23-pre", path = "../extra" } -tract-pulse-opl = { optional = true, version = "=0.20.23-pre", path = "../pulse-opl" } -tract-pulse = { optional = true, version = "=0.20.23-pre", path = "../pulse" } -tract-onnx = { optional = true, version = "=0.20.23-pre", path = "../onnx" } -tract-tensorflow = { optional = true, version = "=0.20.23-pre", path = "../tensorflow" } -tract-tflite = { optional = true, version = "=0.20.23-pre", path = "../tflite" } +tract-libcli = { version = "=0.21.0", path = "../libcli" } +tract-extra = { optional = true, version = "=0.21.0", path = "../extra" } +tract-pulse-opl = { optional = true, version = "=0.21.0", path = "../pulse-opl" } +tract-pulse = { optional = true, version = "=0.21.0", path = "../pulse" } +tract-onnx = { optional = true, version = "=0.21.0", path = "../onnx" } +tract-tensorflow = { optional = true, version = "=0.21.0", path = "../tensorflow" } +tract-tflite = { optional = true, version = "=0.21.0", path = "../tflite" } [features] default = ["onnx", "tf", "pulse", "pulse-opl", "tflite", "extra"] diff --git a/examples/keras-tract-tf2/Cargo.toml b/examples/keras-tract-tf2/Cargo.toml index 873c86a301..6ddd929e56 100644 --- a/examples/keras-tract-tf2/Cargo.toml +++ b/examples/keras-tract-tf2/Cargo.toml @@ -10,6 +10,6 @@ edition = "2021" [dependencies] tract-core = { path = "../../core", version = "=0.21.0" } -tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" } +tract-onnx = { path = "../../onnx", version = "=0.21.0" } ndarray-npy.workspace = true diff --git a/examples/onnx-mobilenet-v2/Cargo.toml b/examples/onnx-mobilenet-v2/Cargo.toml index 3e46cb670c..0cf1549d0a 100644 --- a/examples/onnx-mobilenet-v2/Cargo.toml +++ b/examples/onnx-mobilenet-v2/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" } +tract-onnx = { path = "../../onnx", version = "=0.21.0" } diff --git a/examples/pytorch-albert-v2/Cargo.toml b/examples/pytorch-albert-v2/Cargo.toml index bd5cbd8d9d..a92ae3136d 100644 --- a/examples/pytorch-albert-v2/Cargo.toml +++ b/examples/pytorch-albert-v2/Cargo.toml @@ -13,4 +13,4 @@ ndarray.workspace = true tokenizers.workspace = true clap_builder = { version = "4.4" } clap_lex = { version = "0.6" } -tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" } +tract-onnx = { path = "../../onnx", version = "=0.21.0" } diff --git a/examples/pytorch-resnet/Cargo.toml b/examples/pytorch-resnet/Cargo.toml index 5f3aeb42fe..5dadf66303 100644 --- a/examples/pytorch-resnet/Cargo.toml +++ b/examples/pytorch-resnet/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" } +tract-onnx = { path = "../../onnx", version = "=0.21.0" } diff --git a/examples/tensorflow-mobilenet-v2/Cargo.toml b/examples/tensorflow-mobilenet-v2/Cargo.toml index e6871ec348..710b042d68 100644 --- a/examples/tensorflow-mobilenet-v2/Cargo.toml +++ b/examples/tensorflow-mobilenet-v2/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" } diff --git a/examples/tflite-mobilenet-v3/Cargo.toml b/examples/tflite-mobilenet-v3/Cargo.toml index 194af6ffb0..69eaa339cb 100644 --- a/examples/tflite-mobilenet-v3/Cargo.toml +++ b/examples/tflite-mobilenet-v3/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-tflite = { path = "../../tflite", version = "=0.20.23-pre" } +tract-tflite = { path = "../../tflite", version = "=0.21.0" } diff --git a/extra/Cargo.toml b/extra/Cargo.toml index 7700319c04..0eb9a54662 100644 --- a/extra/Cargo.toml +++ b/extra/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-extra" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" } [dependencies] tract-nnef = { version = "=0.21.0", path = "../nnef" } -tract-pulse = { version = "=0.20.23-pre", path = "../pulse" } +tract-pulse = { version = "=0.21.0", path = "../pulse" } [dev-dependencies] criterion.workspace = true diff --git a/harness/core-proptest-pulse/Cargo.toml b/harness/core-proptest-pulse/Cargo.toml index ec9f234f7c..f3b9f012c1 100644 --- a/harness/core-proptest-pulse/Cargo.toml +++ b/harness/core-proptest-pulse/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] tract-core = { path = "../../core", version = "=0.21.0" } -tract-pulse = { path = "../../pulse", version = "=0.20.23-pre" } +tract-pulse = { path = "../../pulse", version = "=0.21.0" } [dev-dependencies] log.workspace = true diff --git a/harness/lstm-proptest-onnx-vs-tf/Cargo.toml b/harness/lstm-proptest-onnx-vs-tf/Cargo.toml index c4492ef9fc..95c477f864 100644 --- a/harness/lstm-proptest-onnx-vs-tf/Cargo.toml +++ b/harness/lstm-proptest-onnx-vs-tf/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [dependencies] proptest.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" } -tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" } +tract-onnx = { path = "../../onnx", version = "=0.21.0" } diff --git a/harness/onnx-proptest/Cargo.toml b/harness/onnx-proptest/Cargo.toml index 205e4739e4..e570c509bc 100644 --- a/harness/onnx-proptest/Cargo.toml +++ b/harness/onnx-proptest/Cargo.toml @@ -12,5 +12,5 @@ onnxruntime = { path = "../../../../github/onnxruntime-rs/onnxruntime" } onnx-pb = "0.1.4" anyhow = "1.0.56" prost = "0.11.0" -tract-onnx = { path = "../../onnx" , version = "=0.20.23-pre" } +tract-onnx = { path = "../../onnx" , version = "=0.21.0" } proptest = "1.0.0" diff --git a/harness/tf-inceptionv3/Cargo.toml b/harness/tf-inceptionv3/Cargo.toml index 719b339b08..2ea32b5ca3 100644 --- a/harness/tf-inceptionv3/Cargo.toml +++ b/harness/tf-inceptionv3/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" [dependencies] image.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" } [features] conform = [ "tract-tensorflow/conform" ] diff --git a/harness/tf-mobilenet-v2/Cargo.toml b/harness/tf-mobilenet-v2/Cargo.toml index 6207271d21..dd05c99f7a 100644 --- a/harness/tf-mobilenet-v2/Cargo.toml +++ b/harness/tf-mobilenet-v2/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" [dependencies] image.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" } [dev-dependencies] dinghy-test.workspace = true diff --git a/harness/tf-moz-deepspeech/Cargo.toml b/harness/tf-moz-deepspeech/Cargo.toml index dd7219d404..1e2797e74f 100644 --- a/harness/tf-moz-deepspeech/Cargo.toml +++ b/harness/tf-moz-deepspeech/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" [dependencies] log.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.20.23-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.0" } [dev-dependencies] env_logger.workspace = true diff --git a/harness/tfl-mobilenet-v2-q/Cargo.toml b/harness/tfl-mobilenet-v2-q/Cargo.toml index 03eb9ca2b9..94d5c9abb3 100644 --- a/harness/tfl-mobilenet-v2-q/Cargo.toml +++ b/harness/tfl-mobilenet-v2-q/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] image.workspace = true -tract-tflite = { path = "../../tflite", version = "=0.20.23-pre" } +tract-tflite = { path = "../../tflite", version = "=0.21.0" } [dev-dependencies] dinghy-test.workspace = true diff --git a/hir/Cargo.toml b/hir/Cargo.toml index e5ed95b956..861c155929 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" diff --git a/libcli/Cargo.toml b/libcli/Cargo.toml index cfbd25ba6f..70fd79df35 100644 --- a/libcli/Cargo.toml +++ b/libcli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-libcli" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -24,9 +24,9 @@ rand.workspace = true serde.workspace = true serde_json.workspace = true tract-core = { version = "=0.21.0", path = "../core" } -tract-hir = { version = "=0.20.23-pre", path = "../hir" } -tract-onnx = { version = "=0.20.23-pre", path = "../onnx", optional = true } -tract-tflite = { version = "=0.20.23-pre", path = "../tflite", optional = true } +tract-hir = { version = "=0.21.0", path = "../hir" } +tract-onnx = { version = "=0.21.0", path = "../onnx", optional = true } +tract-tflite = { version = "=0.21.0", path = "../tflite", optional = true } [features] # hir = ["tract-hir"] diff --git a/onnx-opl/Cargo.toml b/onnx-opl/Cargo.toml index f3ea57d64d..e8af4bcb27 100644 --- a/onnx-opl/Cargo.toml +++ b/onnx-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx-opl" -version = "0.20.23-pre" +version = "0.21.0" authors = ["Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index 93712c6b12..c737cd526a 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.20.23-pre" +version = "0.21.0" authors = ["Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -26,8 +26,8 @@ num-integer.workspace = true prost.workspace = true smallvec.workspace = true tract-nnef = { version = "=0.21.0", path = "../nnef" } -tract-hir = { version = "=0.20.23-pre", path = "../hir" } -tract-onnx-opl = { version = "=0.20.23-pre", path = "../onnx-opl" } +tract-hir = { version = "=0.21.0", path = "../hir" } +tract-onnx-opl = { version = "=0.21.0", path = "../onnx-opl" } [dev-dependencies] env_logger.workspace = true diff --git a/pulse-opl/Cargo.toml b/pulse-opl/Cargo.toml index 37c6ca0241..43319e1294 100644 --- a/pulse-opl/Cargo.toml +++ b/pulse-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse-opl" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" diff --git a/pulse/Cargo.toml b/pulse/Cargo.toml index 769f04e91d..c46b2171d7 100644 --- a/pulse/Cargo.toml +++ b/pulse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse" -version = "0.20.23-pre" +version = "0.21.0" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -17,5 +17,5 @@ maintenance = { status = "actively-developed" } downcast-rs.workspace = true lazy_static.workspace = true log.workspace = true -tract-pulse-opl = { version = "=0.20.23-pre", path = "../pulse-opl" } +tract-pulse-opl = { version = "=0.21.0", path = "../pulse-opl" } diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 1d77ee944f..aadbb334a8 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.20.23-pre" +version = "0.21.0" authors = ["Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -23,8 +23,8 @@ memmap2.workspace = true prost.workspace = true prost-types.workspace = true tensorflow = { workspace = true, optional = true } -tract-hir = { version = "=0.20.23-pre", path = "../hir" } -tract-pulse = { version = "=0.20.23-pre", path = "../pulse" } +tract-hir = { version = "=0.21.0", path = "../hir" } +tract-pulse = { version = "=0.21.0", path = "../pulse" } # [build-dependencies] # protobuf-src = "1.0.5+3.19.3" diff --git a/test-rt/suite-onnx/Cargo.toml b/test-rt/suite-onnx/Cargo.toml index f437cbb322..0ea926b981 100644 --- a/test-rt/suite-onnx/Cargo.toml +++ b/test-rt/suite-onnx/Cargo.toml @@ -16,8 +16,8 @@ log.workspace = true prost.workspace = true infra = { path = "../infra" } tract-core = { path = "../../core" , version = "=0.21.0" } -tract-onnx = { path = "../../onnx" , version = "=0.20.23-pre" } -tract-hir = { path = "../../hir" , version = "=0.20.23-pre" } +tract-onnx = { path = "../../onnx" , version = "=0.21.0" } +tract-hir = { path = "../../hir" , version = "=0.21.0" } [features] onnx_1_4_1 = [] diff --git a/test-rt/test-f16/Cargo.toml b/test-rt/test-f16/Cargo.toml index e2e13b32a2..0ce37708f2 100644 --- a/test-rt/test-f16/Cargo.toml +++ b/test-rt/test-f16/Cargo.toml @@ -15,7 +15,7 @@ infra = { path = "../infra" } tract-core = { path = "../../core" , version = "=0.21.0" } suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.0" } [dev-dependencies] home.workspace = true @@ -25,7 +25,7 @@ log.workspace = true tflitec.workspace = true tract-core = { path = "../../core", version = "=0.21.0" } tract-nnef = { path = "../../nnef", version = "=0.21.0" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.0" } infra = { path = "../infra" } suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } diff --git a/test-rt/test-nnef-cycle/Cargo.toml b/test-rt/test-nnef-cycle/Cargo.toml index 9c24e898bc..fda04a20df 100644 --- a/test-rt/test-nnef-cycle/Cargo.toml +++ b/test-rt/test-nnef-cycle/Cargo.toml @@ -21,5 +21,5 @@ log.workspace = true suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } tract-core = { path = "../../core", version = "=0.21.0" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.0" } tract-nnef = { path = "../../nnef", version = "=0.21.0" } diff --git a/test-rt/test-onnx-core/Cargo.toml b/test-rt/test-onnx-core/Cargo.toml index 47394a569a..d9bd98be68 100644 --- a/test-rt/test-onnx-core/Cargo.toml +++ b/test-rt/test-onnx-core/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" lazy_static.workspace = true tract-core = { path = "../../core", version = "=0.21.0" } tract-nnef = { path = "../../nnef", version = "=0.21.0" } -tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" } +tract-onnx = { path = "../../onnx", version = "=0.21.0" } suite-onnx = { path = "../suite-onnx" } [features] diff --git a/test-rt/test-onnx-core/debug-utils/Cargo.toml b/test-rt/test-onnx-core/debug-utils/Cargo.toml index 35c00d801f..8af65acde3 100644 --- a/test-rt/test-onnx-core/debug-utils/Cargo.toml +++ b/test-rt/test-onnx-core/debug-utils/Cargo.toml @@ -9,4 +9,4 @@ members = [] [dependencies] protobuf = "*" -tract-onnx = { path = "../../../onnx" , version = "=0.20.23-pre" } +tract-onnx = { path = "../../../onnx" , version = "=0.21.0" } diff --git a/test-rt/test-tflite/Cargo.toml b/test-rt/test-tflite/Cargo.toml index bb03c35222..a076d0224c 100644 --- a/test-rt/test-tflite/Cargo.toml +++ b/test-rt/test-tflite/Cargo.toml @@ -21,8 +21,8 @@ lazy_static.workspace = true log.workspace = true tflitec.workspace = true tract-core = { path = "../../core", version = "=0.21.0" } -tract-tflite = { path = "../../tflite", version = "=0.20.23-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" } +tract-tflite = { path = "../../tflite", version = "=0.21.0" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.0" } infra = { path = "../infra" } suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } diff --git a/tflite/Cargo.toml b/tflite/Cargo.toml index 6059a70d78..c6fc0c83fa 100644 --- a/tflite/Cargo.toml +++ b/tflite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tflite" -version = "0.20.23-pre" +version = "0.21.0" authors = ["Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"