From dd6bee83f535a73fcc6bb0d995de1666a6d4f21c Mon Sep 17 00:00:00 2001 From: Mathieu Poumeyrol Date: Tue, 23 Apr 2024 13:20:27 +0200 Subject: [PATCH] release 0.21.4 --- api/Cargo.toml | 2 +- api/ffi/Cargo.toml | 6 ++--- api/proxy/Cargo.toml | 6 ++--- api/proxy/sys/Cargo.toml | 4 ++-- api/rs/Cargo.toml | 16 ++++++------- cli/Cargo.toml | 24 +++++++++---------- core/Cargo.toml | 6 ++--- data/Cargo.toml | 2 +- examples/keras-tract-tf2/Cargo.toml | 4 ++-- examples/nnef-dump-mobilenet-v2/Cargo.toml | 2 +- examples/nnef-mobilenet-v2/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 | 6 ++--- harness/core-proptest-pulse/Cargo.toml | 4 ++-- harness/lstm-proptest-onnx-vs-tf/Cargo.toml | 4 ++-- harness/nnef-inceptionv3/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 | 4 ++-- libcli/Cargo.toml | 10 ++++---- linalg/Cargo.toml | 4 ++-- linalg/cost_model/Cargo.toml | 4 ++-- linalg/matmul-bench/Cargo.toml | 4 ++-- nnef/Cargo.toml | 4 ++-- nnef/nnef-resources/Cargo.toml | 4 ++-- onnx-opl/Cargo.toml | 4 ++-- onnx/Cargo.toml | 8 +++---- pulse-opl/Cargo.toml | 4 ++-- pulse/Cargo.toml | 4 ++-- tensorflow/Cargo.toml | 6 ++--- test-rt/infra/Cargo.toml | 2 +- test-rt/suite-onnx/Cargo.toml | 6 ++--- test-rt/suite-unit/Cargo.toml | 2 +- test-rt/test-blas/Cargo.toml | 6 ++--- test-rt/test-f16/Cargo.toml | 10 ++++---- test-rt/test-nnef-cycle/Cargo.toml | 8 +++---- test-rt/test-onnx-core/Cargo.toml | 6 ++--- test-rt/test-onnx-core/debug-utils/Cargo.toml | 2 +- test-rt/test-tflite/Cargo.toml | 8 +++---- test-rt/test-unit-core/Cargo.toml | 2 +- tflite/Cargo.toml | 4 ++-- 48 files changed, 114 insertions(+), 114 deletions(-) diff --git a/api/Cargo.toml b/api/Cargo.toml index 873a97a9d2..c122fbc085 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-api" -version = "0.21.4-pre" +version = "0.21.4" 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 c5c6e8eee5..6032f0a43d 100644 --- a/api/ffi/Cargo.toml +++ b/api/ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-ffi" -version = "0.21.4-pre" +version = "0.21.4" 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.21.4-pre" } -tract-rs = { path = "../rs" , version = "=0.21.4-pre" } +tract-api = { path = ".." , version = "=0.21.4" } +tract-rs = { path = "../rs" , version = "=0.21.4" } diff --git a/api/proxy/Cargo.toml b/api/proxy/Cargo.toml index dc752dffcb..7f58da6080 100644 --- a/api/proxy/Cargo.toml +++ b/api/proxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-proxy" -version = "0.21.4-pre" +version = "0.21.4" 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.21.4-pre" } -tract-proxy-sys = { path = "sys", version = "=0.21.4-pre" } +tract-api = { path = ".." , version = "=0.21.4" } +tract-proxy-sys = { path = "sys", version = "=0.21.4" } [dev-dependencies] reqwest.workspace = true diff --git a/api/proxy/sys/Cargo.toml b/api/proxy/sys/Cargo.toml index 653444c948..16527695f2 100644 --- a/api/proxy/sys/Cargo.toml +++ b/api/proxy/sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-proxy-sys" -version = "0.21.4-pre" +version = "0.21.4" 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.21.4-pre" } +tract-ffi = { path = "../../ffi" , version = "=0.21.4" } [build-dependencies] bindgen.workspace = true diff --git a/api/rs/Cargo.toml b/api/rs/Cargo.toml index a74653a252..f3ef6e81bd 100644 --- a/api/rs/Cargo.toml +++ b/api/rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-rs" -version = "0.21.4-pre" +version = "0.21.4" 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.21.4-pre" } -tract-nnef = { path = "../../nnef/" , version = "=0.21.4-pre" } -tract-onnx-opl = { path = "../../onnx-opl/" , version = "=0.21.4-pre" } -tract-onnx = { path = "../../onnx/" , version = "=0.21.4-pre" } -tract-extra = { path = "../../extra/" , version = "=0.21.4-pre" } -tract-pulse = { path = "../../pulse/" , version = "=0.21.4-pre" } -tract-libcli = { path = "../../libcli" , version = "=0.21.4-pre" } +tract-api = { path = ".." , version = "=0.21.4" } +tract-nnef = { path = "../../nnef/" , version = "=0.21.4" } +tract-onnx-opl = { path = "../../onnx-opl/" , version = "=0.21.4" } +tract-onnx = { path = "../../onnx/" , version = "=0.21.4" } +tract-extra = { path = "../../extra/" , version = "=0.21.4" } +tract-pulse = { path = "../../pulse/" , version = "=0.21.4" } +tract-libcli = { path = "../../libcli" , version = "=0.21.4" } serde_json.workspace = true [dev-dependencies] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 40df2b52cf..97e3205b24 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.21.4-pre" +version = "0.21.4" authors = [ "Romain Liautaud ", "Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -35,17 +35,17 @@ rustls.workspace = true scan_fmt.workspace = true serde.workspace = true serde_json.workspace = true -tract-linalg = { version = "=0.21.4-pre", path = "../linalg" } -tract-core = { version = "=0.21.4-pre", path = "../core" } -tract-hir = { version = "=0.21.4-pre", path = "../hir" } -tract-nnef = { version = "=0.21.4-pre", path = "../nnef" } -tract-libcli = { version = "=0.21.4-pre", path = "../libcli" } -tract-extra = { optional = true, version = "=0.21.4-pre", path = "../extra" } -tract-pulse-opl = { optional = true, version = "=0.21.4-pre", path = "../pulse-opl" } -tract-pulse = { optional = true, version = "=0.21.4-pre", path = "../pulse" } -tract-onnx = { optional = true, version = "=0.21.4-pre", path = "../onnx" } -tract-tensorflow = { optional = true, version = "=0.21.4-pre", path = "../tensorflow" } -tract-tflite = { optional = true, version = "=0.21.4-pre", path = "../tflite" } +tract-linalg = { version = "=0.21.4", path = "../linalg" } +tract-core = { version = "=0.21.4", path = "../core" } +tract-hir = { version = "=0.21.4", path = "../hir" } +tract-nnef = { version = "=0.21.4", path = "../nnef" } +tract-libcli = { version = "=0.21.4", path = "../libcli" } +tract-extra = { optional = true, version = "=0.21.4", path = "../extra" } +tract-pulse-opl = { optional = true, version = "=0.21.4", path = "../pulse-opl" } +tract-pulse = { optional = true, version = "=0.21.4", path = "../pulse" } +tract-onnx = { optional = true, version = "=0.21.4", path = "../onnx" } +tract-tensorflow = { optional = true, version = "=0.21.4", path = "../tensorflow" } +tract-tflite = { optional = true, version = "=0.21.4", path = "../tflite" } [features] default = ["onnx", "tf", "pulse", "pulse-opl", "tflite", "extra"] diff --git a/core/Cargo.toml b/core/Cargo.toml index 2677bb302f..87af6d4f1d 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.21.4-pre" +version = "0.21.4" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -34,8 +34,8 @@ openblas-src = { workspace=true, optional = true } paste.workspace = true rustfft.workspace = true smallvec.workspace = true -tract-linalg = { version = "=0.21.4-pre", path = "../linalg" } -tract-data = { version = "=0.21.4-pre", path = "../data" } +tract-linalg = { version = "=0.21.4", path = "../linalg" } +tract-data = { version = "=0.21.4", path = "../data" } [features] default = [ ] diff --git a/data/Cargo.toml b/data/Cargo.toml index 338c4e7b04..cab89ef746 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-data" -version = "0.21.4-pre" +version = "0.21.4" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" diff --git a/examples/keras-tract-tf2/Cargo.toml b/examples/keras-tract-tf2/Cargo.toml index 85276d4e8d..1ec4bfa991 100644 --- a/examples/keras-tract-tf2/Cargo.toml +++ b/examples/keras-tract-tf2/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] -tract-core = { path = "../../core", version = "=0.21.4-pre" } -tract-onnx = { path = "../../onnx", version = "=0.21.4-pre" } +tract-core = { path = "../../core", version = "=0.21.4" } +tract-onnx = { path = "../../onnx", version = "=0.21.4" } ndarray-npy.workspace = true diff --git a/examples/nnef-dump-mobilenet-v2/Cargo.toml b/examples/nnef-dump-mobilenet-v2/Cargo.toml index 4230d1e933..400ca576ea 100644 --- a/examples/nnef-dump-mobilenet-v2/Cargo.toml +++ b/examples/nnef-dump-mobilenet-v2/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-nnef = { version = "=0.21.4-pre", path = "../../nnef" } +tract-nnef = { version = "=0.21.4", path = "../../nnef" } diff --git a/examples/nnef-mobilenet-v2/Cargo.toml b/examples/nnef-mobilenet-v2/Cargo.toml index 14a1ad36ac..effdcc5ecd 100644 --- a/examples/nnef-mobilenet-v2/Cargo.toml +++ b/examples/nnef-mobilenet-v2/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] image.workspace = true -tract-nnef = { version = "=0.21.4-pre", path = "../../nnef" } +tract-nnef = { version = "=0.21.4", path = "../../nnef" } diff --git a/examples/onnx-mobilenet-v2/Cargo.toml b/examples/onnx-mobilenet-v2/Cargo.toml index 1b41beba50..ab1f2f5228 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.21.4-pre" } +tract-onnx = { path = "../../onnx", version = "=0.21.4" } diff --git a/examples/pytorch-albert-v2/Cargo.toml b/examples/pytorch-albert-v2/Cargo.toml index e01502c128..6421a83769 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.21.4-pre" } +tract-onnx = { path = "../../onnx", version = "=0.21.4" } diff --git a/examples/pytorch-resnet/Cargo.toml b/examples/pytorch-resnet/Cargo.toml index 6a9bfedf8b..6f4c4d3dc2 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.21.4-pre" } +tract-onnx = { path = "../../onnx", version = "=0.21.4" } diff --git a/examples/tensorflow-mobilenet-v2/Cargo.toml b/examples/tensorflow-mobilenet-v2/Cargo.toml index 501eede902..032d2f949e 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.21.4-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.4" } diff --git a/examples/tflite-mobilenet-v3/Cargo.toml b/examples/tflite-mobilenet-v3/Cargo.toml index 09514f0048..dca517c3be 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.21.4-pre" } +tract-tflite = { path = "../../tflite", version = "=0.21.4" } diff --git a/extra/Cargo.toml b/extra/Cargo.toml index f94d396b06..757e3fac3c 100644 --- a/extra/Cargo.toml +++ b/extra/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-extra" -version = "0.21.4-pre" +version = "0.21.4" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -15,8 +15,8 @@ rust-version = "1.75" maintenance = { status = "actively-developed" } [dependencies] -tract-nnef = { version = "=0.21.4-pre", path = "../nnef" } -tract-pulse = { version = "=0.21.4-pre", path = "../pulse" } +tract-nnef = { version = "=0.21.4", path = "../nnef" } +tract-pulse = { version = "=0.21.4", path = "../pulse" } [dev-dependencies] criterion.workspace = true diff --git a/harness/core-proptest-pulse/Cargo.toml b/harness/core-proptest-pulse/Cargo.toml index c7f729e225..126cf95490 100644 --- a/harness/core-proptest-pulse/Cargo.toml +++ b/harness/core-proptest-pulse/Cargo.toml @@ -6,8 +6,8 @@ license = "MIT OR Apache-2.0" edition = "2021" [dependencies] -tract-core = { path = "../../core", version = "=0.21.4-pre" } -tract-pulse = { path = "../../pulse", version = "=0.21.4-pre" } +tract-core = { path = "../../core", version = "=0.21.4" } +tract-pulse = { path = "../../pulse", version = "=0.21.4" } [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 79430a0f39..3c58086725 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.21.4-pre" } -tract-onnx = { path = "../../onnx", version = "=0.21.4-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.4" } +tract-onnx = { path = "../../onnx", version = "=0.21.4" } diff --git a/harness/nnef-inceptionv3/Cargo.toml b/harness/nnef-inceptionv3/Cargo.toml index 96b3035b74..abeddca0b9 100644 --- a/harness/nnef-inceptionv3/Cargo.toml +++ b/harness/nnef-inceptionv3/Cargo.toml @@ -8,8 +8,8 @@ edition = "2021" [dependencies] flate2.workspace = true image.workspace = true -tract-core = { version = "=0.21.4-pre", path = "../../core" } -tract-nnef = { version = "=0.21.4-pre", path = "../../nnef" } +tract-core = { version = "=0.21.4", path = "../../core" } +tract-nnef = { version = "=0.21.4", path = "../../nnef" } [dev-dependencies] dinghy-test.workspace = true diff --git a/harness/onnx-proptest/Cargo.toml b/harness/onnx-proptest/Cargo.toml index d6e0db04c9..04aa432ed6 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.21.4-pre" } +tract-onnx = { path = "../../onnx" , version = "=0.21.4" } proptest = "1.0.0" diff --git a/harness/tf-inceptionv3/Cargo.toml b/harness/tf-inceptionv3/Cargo.toml index 66a9f1c37c..fea803be82 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.21.4-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.4" } [features] conform = [ "tract-tensorflow/conform" ] diff --git a/harness/tf-mobilenet-v2/Cargo.toml b/harness/tf-mobilenet-v2/Cargo.toml index fe912f2f68..a8e7e63bfc 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.21.4-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.4" } [dev-dependencies] dinghy-test.workspace = true diff --git a/harness/tf-moz-deepspeech/Cargo.toml b/harness/tf-moz-deepspeech/Cargo.toml index 61eadf769d..0ef1b8c300 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.21.4-pre" } +tract-tensorflow = { path = "../../tensorflow", version = "=0.21.4" } [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 f6527b0503..00bdc7cdb4 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.21.4-pre" } +tract-tflite = { path = "../../tflite", version = "=0.21.4" } [dev-dependencies] dinghy-test.workspace = true diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 232219759c..3cda10d85b 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.21.4-pre" +version = "0.21.4" license = "MIT OR 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.workspace = true log.workspace = true -tract-core = { version = "=0.21.4-pre", path = "../core" } +tract-core = { version = "=0.21.4", path = "../core" } [dev-dependencies] env_logger.workspace = true diff --git a/libcli/Cargo.toml b/libcli/Cargo.toml index b1655361de..6961e1576d 100644 --- a/libcli/Cargo.toml +++ b/libcli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-libcli" -version = "0.21.4-pre" +version = "0.21.4" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -23,10 +23,10 @@ py_literal.workspace = true rand.workspace = true serde.workspace = true serde_json.workspace = true -tract-core = { version = "=0.21.4-pre", path = "../core" } -tract-hir = { version = "=0.21.4-pre", path = "../hir" } -tract-onnx = { version = "=0.21.4-pre", path = "../onnx", optional = true } -tract-tflite = { version = "=0.21.4-pre", path = "../tflite", optional = true } +tract-core = { version = "=0.21.4", path = "../core" } +tract-hir = { version = "=0.21.4", path = "../hir" } +tract-onnx = { version = "=0.21.4", path = "../onnx", optional = true } +tract-tflite = { version = "=0.21.4", path = "../tflite", optional = true } [features] # hir = ["tract-hir"] diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index f1bb36fe27..6d8457a31a 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.21.4-pre" +version = "0.21.4" license = "MIT OR Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -22,7 +22,7 @@ log.workspace = true num-traits.workspace = true paste.workspace = true scan_fmt.workspace = true -tract-data = { version = "=0.21.4-pre", path = "../data" } +tract-data = { version = "=0.21.4", path = "../data" } [build-dependencies] cc.workspace = true diff --git a/linalg/cost_model/Cargo.toml b/linalg/cost_model/Cargo.toml index 7f10fea2d5..9d94e3b10e 100644 --- a/linalg/cost_model/Cargo.toml +++ b/linalg/cost_model/Cargo.toml @@ -15,5 +15,5 @@ colorous = "1.0.6" nu_ansi_term = "0.12.1" pbr = "1" readings-probe = "0.1.4" -tract-linalg = { path="../../linalg", version = "=0.21.4-pre" } -tract-data = { path="../../data", version = "=0.21.4-pre" } +tract-linalg = { path="../../linalg", version = "=0.21.4" } +tract-data = { path="../../data", version = "=0.21.4" } diff --git a/linalg/matmul-bench/Cargo.toml b/linalg/matmul-bench/Cargo.toml index 294921defe..97dfb4ffc7 100644 --- a/linalg/matmul-bench/Cargo.toml +++ b/linalg/matmul-bench/Cargo.toml @@ -12,8 +12,8 @@ cblas = { version = "0.3", optional = true } accelerate-src = { version = "0.3", optional = true } blis-src = { version = "0.2", features = ["static"], optional = true } matrixmultiply = "*" -tract-data = { path = "../../data", version = "=0.21.4-pre" } -tract-linalg = { path = "../../linalg", version = "=0.21.4-pre" } +tract-data = { path = "../../data", version = "=0.21.4" } +tract-linalg = { path = "../../linalg", version = "=0.21.4" } [features] diff --git a/nnef/Cargo.toml b/nnef/Cargo.toml index 4556f7a1e8..c0fe4f6193 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.21.4-pre" +version = "0.21.4" authors = ["Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -21,7 +21,7 @@ nom.workspace = true tar.workspace = true flate2 = { workspace = true, optional = true } walkdir.workspace = true -tract-core = { version = "=0.21.4-pre", path = "../core" } +tract-core = { version = "=0.21.4", path = "../core" } [dev-dependencies] temp-dir = "0.1.11" diff --git a/nnef/nnef-resources/Cargo.toml b/nnef/nnef-resources/Cargo.toml index ca6fe83d61..1622f7ca91 100644 --- a/nnef/nnef-resources/Cargo.toml +++ b/nnef/nnef-resources/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef-resources" -version = "0.21.4-pre" +version = "0.21.4" authors = [ "Mathieu Poumeyrol ", "Hubert de La Jonquière " @@ -22,6 +22,6 @@ serde_json.workspace = true serde.workspace = true anyhow.workspace = true nom.workspace = true -tract-nnef = { version = "=0.21.4-pre", path = "../../nnef" } +tract-nnef = { version = "=0.21.4", path = "../../nnef" } diff --git a/onnx-opl/Cargo.toml b/onnx-opl/Cargo.toml index 9bcc193609..c5bb3eadc5 100644 --- a/onnx-opl/Cargo.toml +++ b/onnx-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx-opl" -version = "0.21.4-pre" +version = "0.21.4" authors = ["Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -19,7 +19,7 @@ log.workspace = true rand.workspace = true rand_distr.workspace = true rustfft.workspace = true -tract-nnef = { version = "=0.21.4-pre", path = "../nnef" } +tract-nnef = { version = "=0.21.4", path = "../nnef" } [dev-dependencies] env_logger.workspace = true diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index 1d8045e5a3..3d65f33973 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.21.4-pre" +version = "0.21.4" authors = ["Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -25,9 +25,9 @@ memmap2.workspace = true num-integer.workspace = true prost.workspace = true smallvec.workspace = true -tract-nnef = { version = "=0.21.4-pre", path = "../nnef" } -tract-hir = { version = "=0.21.4-pre", path = "../hir" } -tract-onnx-opl = { version = "=0.21.4-pre", path = "../onnx-opl" } +tract-nnef = { version = "=0.21.4", path = "../nnef" } +tract-hir = { version = "=0.21.4", path = "../hir" } +tract-onnx-opl = { version = "=0.21.4", path = "../onnx-opl" } [dev-dependencies] env_logger.workspace = true diff --git a/pulse-opl/Cargo.toml b/pulse-opl/Cargo.toml index 21b5028606..c0b1491aee 100644 --- a/pulse-opl/Cargo.toml +++ b/pulse-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse-opl" -version = "0.21.4-pre" +version = "0.21.4" 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] downcast-rs.workspace = true lazy_static.workspace = true -tract-nnef = { version = "=0.21.4-pre", path = "../nnef" } +tract-nnef = { version = "=0.21.4", path = "../nnef" } [features] complex = [ "tract-nnef/complex" ] diff --git a/pulse/Cargo.toml b/pulse/Cargo.toml index 6fa72f9f67..ab60666307 100644 --- a/pulse/Cargo.toml +++ b/pulse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse" -version = "0.21.4-pre" +version = "0.21.4" 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.21.4-pre", path = "../pulse-opl" } +tract-pulse-opl = { version = "=0.21.4", path = "../pulse-opl" } diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 3283f1f06f..81efc56833 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.21.4-pre" +version = "0.21.4" 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.21.4-pre", path = "../hir" } -tract-pulse = { version = "=0.21.4-pre", path = "../pulse" } +tract-hir = { version = "=0.21.4", path = "../hir" } +tract-pulse = { version = "=0.21.4", path = "../pulse" } # [build-dependencies] # protobuf-src = "1.0.5+3.19.3" diff --git a/test-rt/infra/Cargo.toml b/test-rt/infra/Cargo.toml index e9ffe0796f..65587a5bca 100644 --- a/test-rt/infra/Cargo.toml +++ b/test-rt/infra/Cargo.toml @@ -13,4 +13,4 @@ env_logger.workspace = true itertools.workspace = true lazy_static.workspace = true proptest.workspace = true -tract-core = { path = "../../core", version = "=0.21.4-pre" } +tract-core = { path = "../../core", version = "=0.21.4" } diff --git a/test-rt/suite-onnx/Cargo.toml b/test-rt/suite-onnx/Cargo.toml index e27a9be163..6b19e8ca27 100644 --- a/test-rt/suite-onnx/Cargo.toml +++ b/test-rt/suite-onnx/Cargo.toml @@ -15,9 +15,9 @@ lazy_static.workspace = true log.workspace = true prost.workspace = true infra = { path = "../infra" } -tract-core = { path = "../../core" , version = "=0.21.4-pre" } -tract-onnx = { path = "../../onnx" , version = "=0.21.4-pre" } -tract-hir = { path = "../../hir" , version = "=0.21.4-pre" } +tract-core = { path = "../../core" , version = "=0.21.4" } +tract-onnx = { path = "../../onnx" , version = "=0.21.4" } +tract-hir = { path = "../../hir" , version = "=0.21.4" } [features] onnx_1_4_1 = [] diff --git a/test-rt/suite-unit/Cargo.toml b/test-rt/suite-unit/Cargo.toml index 0c1e0e8b59..d51a29f50a 100644 --- a/test-rt/suite-unit/Cargo.toml +++ b/test-rt/suite-unit/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tract-core = { path = "../../core" , version = "=0.21.4-pre" } +tract-core = { path = "../../core" , version = "=0.21.4" } proptest.workspace = true infra = { path = "../infra" } diff --git a/test-rt/test-blas/Cargo.toml b/test-rt/test-blas/Cargo.toml index cd8e1b3218..abd01690fc 100644 --- a/test-rt/test-blas/Cargo.toml +++ b/test-rt/test-blas/Cargo.toml @@ -11,7 +11,7 @@ itertools.workspace = true lazy_static.workspace = true suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } -tract-core = { path = "../../core", version = "=0.21.4-pre", features = [ "blis" ] } +tract-core = { path = "../../core", version = "=0.21.4", features = [ "blis" ] } [dev-dependencies] infra = { path = "../infra" } @@ -20,5 +20,5 @@ lazy_static.workspace = true log.workspace = true suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } -tract-core = { path = "../../core", version = "=0.21.4-pre", features = [ "blis" ] } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4-pre" } +tract-core = { path = "../../core", version = "=0.21.4", features = [ "blis" ] } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4" } diff --git a/test-rt/test-f16/Cargo.toml b/test-rt/test-f16/Cargo.toml index e397168050..ac4d8024ac 100644 --- a/test-rt/test-f16/Cargo.toml +++ b/test-rt/test-f16/Cargo.toml @@ -12,10 +12,10 @@ home.workspace = true lazy_static.workspace = true regex.workspace = true infra = { path = "../infra" } -tract-core = { path = "../../core" , version = "=0.21.4-pre" } +tract-core = { path = "../../core" , version = "=0.21.4" } suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4-pre" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4" } [dev-dependencies] home.workspace = true @@ -23,9 +23,9 @@ regex.workspace = true lazy_static.workspace = true log.workspace = true tflitec.workspace = true -tract-core = { path = "../../core", version = "=0.21.4-pre" } -tract-nnef = { path = "../../nnef", version = "=0.21.4-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4-pre" } +tract-core = { path = "../../core", version = "=0.21.4" } +tract-nnef = { path = "../../nnef", version = "=0.21.4" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4" } 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 0c57057be8..78e85cd083 100644 --- a/test-rt/test-nnef-cycle/Cargo.toml +++ b/test-rt/test-nnef-cycle/Cargo.toml @@ -11,7 +11,7 @@ itertools.workspace = true lazy_static.workspace = true suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } -tract-core = { path = "../../core", version = "=0.21.4-pre" } +tract-core = { path = "../../core", version = "=0.21.4" } [dev-dependencies] infra = { path = "../infra" } @@ -20,6 +20,6 @@ lazy_static.workspace = true log.workspace = true suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } -tract-core = { path = "../../core", version = "=0.21.4-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4-pre" } -tract-nnef = { path = "../../nnef", version = "=0.21.4-pre" } +tract-core = { path = "../../core", version = "=0.21.4" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4" } +tract-nnef = { path = "../../nnef", version = "=0.21.4" } diff --git a/test-rt/test-onnx-core/Cargo.toml b/test-rt/test-onnx-core/Cargo.toml index a4f9c30bc0..a7c0a799a6 100644 --- a/test-rt/test-onnx-core/Cargo.toml +++ b/test-rt/test-onnx-core/Cargo.toml @@ -7,9 +7,9 @@ edition = "2021" [dependencies] lazy_static.workspace = true -tract-core = { path = "../../core", version = "=0.21.4-pre" } -tract-nnef = { path = "../../nnef", version = "=0.21.4-pre" } -tract-onnx = { path = "../../onnx", version = "=0.21.4-pre" } +tract-core = { path = "../../core", version = "=0.21.4" } +tract-nnef = { path = "../../nnef", version = "=0.21.4" } +tract-onnx = { path = "../../onnx", version = "=0.21.4" } 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 02a5f26f50..f3ac2da2a4 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.21.4-pre" } +tract-onnx = { path = "../../../onnx" , version = "=0.21.4" } diff --git a/test-rt/test-tflite/Cargo.toml b/test-rt/test-tflite/Cargo.toml index 537d3a3d2d..b1b1c92339 100644 --- a/test-rt/test-tflite/Cargo.toml +++ b/test-rt/test-tflite/Cargo.toml @@ -10,7 +10,7 @@ home.workspace = true lazy_static.workspace = true regex.workspace = true infra = { path = "../infra" } -tract-core = { path = "../../core" , version = "=0.21.4-pre" } +tract-core = { path = "../../core" , version = "=0.21.4" } suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } @@ -20,9 +20,9 @@ regex.workspace = true lazy_static.workspace = true log.workspace = true tflitec.workspace = true -tract-core = { path = "../../core", version = "=0.21.4-pre" } -tract-tflite = { path = "../../tflite", version = "=0.21.4-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4-pre" } +tract-core = { path = "../../core", version = "=0.21.4" } +tract-tflite = { path = "../../tflite", version = "=0.21.4" } +tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.4" } infra = { path = "../infra" } suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } diff --git a/test-rt/test-unit-core/Cargo.toml b/test-rt/test-unit-core/Cargo.toml index 874bee8e88..77958bb62b 100644 --- a/test-rt/test-unit-core/Cargo.toml +++ b/test-rt/test-unit-core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tract-core = { path = "../../core" , version = "=0.21.4-pre" } +tract-core = { path = "../../core" , version = "=0.21.4" } [dev-dependencies] suite-unit = { path = "../suite-unit" } diff --git a/tflite/Cargo.toml b/tflite/Cargo.toml index 76eb78f24f..2e87a96504 100644 --- a/tflite/Cargo.toml +++ b/tflite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tflite" -version = "0.21.4-pre" +version = "0.21.4" authors = ["Mathieu Poumeyrol "] license = "MIT OR Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -10,4 +10,4 @@ edition = "2021" [dependencies] derive-new.workspace = true flatbuffers.workspace = true -tract-core = { version = "=0.21.4-pre", path = "../core" } +tract-core = { version = "=0.21.4", path = "../core" }