diff --git a/api/ffi/Cargo.toml b/api/ffi/Cargo.toml index c93762b92f..5191e076ac 100644 --- a/api/ffi/Cargo.toml +++ b/api/ffi/Cargo.toml @@ -23,5 +23,5 @@ anyhow.workspace = true flate2.workspace = true serde.workspace = true serde_json.workspace = true -tract-api = { path = ".." , version = "=0.21.8-pre" } -tract-rs = { path = "../rs" , version = "=0.21.8-pre" } +tract-api.workspace = true +tract-rs.workspace = true diff --git a/api/proxy/Cargo.toml b/api/proxy/Cargo.toml index 587a22e3e3..98b1e4bcb6 100644 --- a/api/proxy/Cargo.toml +++ b/api/proxy/Cargo.toml @@ -17,8 +17,8 @@ anyhow.workspace = true boow.workspace = true home.workspace = true ndarray.workspace = true -tract-api = { path = ".." , version = "=0.21.8-pre" } -tract-proxy-sys = { path = "sys", version = "=0.21.8-pre" } +tract-api.workspace = true +tract-proxy-sys.workspace = true [dev-dependencies] reqwest.workspace = true diff --git a/api/rs/Cargo.toml b/api/rs/Cargo.toml index f8be3c336e..b853fb79bf 100644 --- a/api/rs/Cargo.toml +++ b/api/rs/Cargo.toml @@ -18,13 +18,13 @@ boow.workspace = true flate2.workspace = true half.workspace = true ndarray.workspace = true -tract-api = { path = ".." , version = "=0.21.8-pre" } -tract-nnef = { path = "../../nnef/" , version = "=0.21.8-pre" } -tract-onnx-opl = { path = "../../onnx-opl/" , version = "=0.21.8-pre" } -tract-onnx = { path = "../../onnx/" , version = "=0.21.8-pre" } -tract-extra = { path = "../../extra/" , version = "=0.21.8-pre" } -tract-pulse = { path = "../../pulse/" , version = "=0.21.8-pre" } -tract-libcli = { path = "../../libcli" , version = "=0.21.8-pre" } +tract-api.workspace = true +tract-nnef.workspace = true +tract-onnx-opl.workspace = true +tract-onnx.workspace = true +tract-extra.workspace = true +tract-pulse.workspace = true +tract-libcli.workspace = true serde_json.workspace = true [dev-dependencies] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 61969ba34b..2ad7181699 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -35,20 +35,20 @@ rustls.workspace = true scan_fmt.workspace = true serde.workspace = true serde_json.workspace = true -tract-linalg = { version = "=0.21.8-pre", path = "../linalg" } -tract-core = { version = "=0.21.8-pre", path = "../core" } -tract-hir = { version = "=0.21.8-pre", path = "../hir" } -tract-nnef = { version = "=0.21.8-pre", path = "../nnef" } -tract-libcli = { version = "=0.21.8-pre", path = "../libcli" } -tract-extra = { optional = true, version = "=0.21.8-pre", path = "../extra" } -tract-pulse-opl = { optional = true, version = "=0.21.8-pre", path = "../pulse-opl" } -tract-pulse = { optional = true, version = "=0.21.8-pre", path = "../pulse" } -tract-onnx = { optional = true, version = "=0.21.8-pre", path = "../onnx" } -tract-tensorflow = { optional = true, version = "=0.21.8-pre", path = "../tensorflow" } -tract-tflite = { optional = true, version = "=0.21.8-pre", path = "../tflite" } +tract-linalg.workspace = true +tract-core.workspace = true +tract-hir.workspace = true +tract-nnef.workspace = true +tract-libcli.workspace = true +tract-extra = { workspace = true, optional = true } +tract-pulse = { workspace = true, optional = true } +tract-pulse-opl = { workspace = true, optional = true } +tract-onnx = { workspace = true, optional = true } +tract-tensorflow = { workspace = true, optional = true } +tract-tflite = { workspace = true, optional = true } [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies] -tract-metal = { version = "=0.21.8-pre", path = "../metal" } +tract-metal.workspace = true [features] diff --git a/core/Cargo.toml b/core/Cargo.toml index 20ffce3ef8..2059ee607d 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -35,8 +35,8 @@ openblas-src = { workspace=true, optional = true } paste.workspace = true rustfft.workspace = true smallvec.workspace = true -tract-linalg = { version = "=0.21.8-pre", path = "../linalg" } -tract-data = { version = "=0.21.8-pre", path = "../data" } +tract-linalg.workspace = true +tract-data.workspace = true [features] default = [ ] diff --git a/examples/face_detection_yolov8onnx_example/Cargo.toml b/examples/face_detection_yolov8onnx_example/Cargo.toml index 8fc01d43cf..fb2716d9aa 100644 --- a/examples/face_detection_yolov8onnx_example/Cargo.toml +++ b/examples/face_detection_yolov8onnx_example/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" anyhow.workspace = true clap = { version = "4.5.9", features = ["derive"] } image.workspace = true -tract-onnx = {path="../../onnx", version="=0.21.8-pre" } +tract-onnx.workspace = true diff --git a/examples/face_similarity_arcface_onnx/Cargo.toml b/examples/face_similarity_arcface_onnx/Cargo.toml index 5a7e998d55..4744ffeb69 100644 --- a/examples/face_similarity_arcface_onnx/Cargo.toml +++ b/examples/face_similarity_arcface_onnx/Cargo.toml @@ -7,6 +7,6 @@ edition = "2021" anyhow.workspace = true clap = { version = "4.5.9", features = ["derive"] } image.workspace = true -tract-onnx = {path="../../onnx", version="=0.21.8-pre" } -tract-core = {path="../../core", version="=0.21.8-pre"} +tract-onnx.workspace = true +tract-core.workspace = true diff --git a/examples/keras-tract-tf2/Cargo.toml b/examples/keras-tract-tf2/Cargo.toml index 9e1ae6c44d..176afd7442 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.8-pre" } -tract-onnx = { path = "../../onnx", version = "=0.21.8-pre" } +tract-core.workspace = true +tract-onnx.workspace = true ndarray-npy.workspace = true diff --git a/examples/nnef-dump-mobilenet-v2/Cargo.toml b/examples/nnef-dump-mobilenet-v2/Cargo.toml index 34fece3486..b3328f53e1 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.8-pre", path = "../../nnef" } +tract-nnef.workspace = true diff --git a/examples/nnef-mobilenet-v2/Cargo.toml b/examples/nnef-mobilenet-v2/Cargo.toml index 70eaef5528..f640c9cabf 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.8-pre", path = "../../nnef" } +tract-nnef.workspace = true diff --git a/examples/onnx-mobilenet-v2/Cargo.toml b/examples/onnx-mobilenet-v2/Cargo.toml index 294324b77f..18e9753171 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.8-pre" } +tract-onnx.workspace = true diff --git a/examples/pytorch-albert-v2/Cargo.toml b/examples/pytorch-albert-v2/Cargo.toml index f8a05ae231..ac3ce86863 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.7" } -tract-onnx = { path = "../../onnx", version = "=0.21.8-pre" } +tract-onnx.workspace = true diff --git a/examples/pytorch-resnet/Cargo.toml b/examples/pytorch-resnet/Cargo.toml index 55e6652a97..e5f6950714 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.8-pre" } +tract-onnx.workspace = true diff --git a/examples/tensorflow-mobilenet-v2/Cargo.toml b/examples/tensorflow-mobilenet-v2/Cargo.toml index a07a37edd9..12e625c16f 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.8-pre" } +tract-tensorflow.workspace = true diff --git a/examples/tflite-mobilenet-v3/Cargo.toml b/examples/tflite-mobilenet-v3/Cargo.toml index 49d654d2a4..395259ce76 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.8-pre" } +tract-tflite.workspace = true diff --git a/extra/Cargo.toml b/extra/Cargo.toml index fcd2395f74..8a9101bb87 100644 --- a/extra/Cargo.toml +++ b/extra/Cargo.toml @@ -15,8 +15,8 @@ rust-version = "1.75" maintenance = { status = "actively-developed" } [dependencies] -tract-nnef = { version = "=0.21.8-pre", path = "../nnef" } -tract-pulse = { version = "=0.21.8-pre", path = "../pulse" } +tract-nnef.workspace = true +tract-pulse.workspace = true [dev-dependencies] criterion.workspace = true diff --git a/harness/core-proptest-pulse/Cargo.toml b/harness/core-proptest-pulse/Cargo.toml index 55d756eef4..aa82a9b760 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.8-pre" } -tract-pulse = { path = "../../pulse", version = "=0.21.8-pre" } +tract-core.workspace = true +tract-pulse.workspace = true [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 638a7c6fb0..8d9f29ccf3 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.8-pre" } -tract-onnx = { path = "../../onnx", version = "=0.21.8-pre" } +tract-tensorflow.workspace = true +tract-onnx.workspace = true diff --git a/harness/nnef-inceptionv3/Cargo.toml b/harness/nnef-inceptionv3/Cargo.toml index 78812f3a74..eebae4ef6d 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.8-pre", path = "../../core" } -tract-nnef = { version = "=0.21.8-pre", path = "../../nnef" } +tract-core.workspace = true +tract-nnef.workspace = true [dev-dependencies] dinghy-test.workspace = true diff --git a/harness/onnx-proptest/Cargo.toml b/harness/onnx-proptest/Cargo.toml index 1710c155fd..d5ecaadb5e 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.8-pre" } +tract-onnx.workspace = true proptest = "1.0.0" diff --git a/harness/tf-inceptionv3/Cargo.toml b/harness/tf-inceptionv3/Cargo.toml index f9a91175ec..076a28e0fe 100644 --- a/harness/tf-inceptionv3/Cargo.toml +++ b/harness/tf-inceptionv3/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] image.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.21.8-pre" } +tract-tensorflow.workspace = true [features] conform = [ "tract-tensorflow/conform" ] diff --git a/harness/tf-mobilenet-v2/Cargo.toml b/harness/tf-mobilenet-v2/Cargo.toml index faf0d1cc10..9d59173a1a 100644 --- a/harness/tf-mobilenet-v2/Cargo.toml +++ b/harness/tf-mobilenet-v2/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] image.workspace = true -tract-tensorflow = { path = "../../tensorflow", version = "=0.21.8-pre" } +tract-tensorflow.workspace = true [dev-dependencies] dinghy-test.workspace = true diff --git a/harness/tf-moz-deepspeech/Cargo.toml b/harness/tf-moz-deepspeech/Cargo.toml index a21bc2349e..197a5f0a58 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.8-pre" } +tract-tensorflow.workspace = true [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 6bf918e3a0..e97611d67a 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.8-pre" } +tract-tflite.workspace = true [dev-dependencies] dinghy-test.workspace = true diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 4afdee9e98..2158e3c379 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -17,7 +17,7 @@ maintenance = { status = "actively-developed" } derive-new.workspace = true log.workspace = true -tract-core = { version = "=0.21.8-pre", path = "../core" } +tract-core.workspace = true [dev-dependencies] env_logger.workspace = true diff --git a/libcli/Cargo.toml b/libcli/Cargo.toml index d831eca982..8e3cc4ca14 100644 --- a/libcli/Cargo.toml +++ b/libcli/Cargo.toml @@ -23,10 +23,10 @@ py_literal.workspace = true rand.workspace = true serde.workspace = true serde_json.workspace = true -tract-core = { version = "=0.21.8-pre", path = "../core" } -tract-hir = { version = "=0.21.8-pre", path = "../hir" } -tract-onnx = { version = "=0.21.8-pre", path = "../onnx", optional = true } -tract-tflite = { version = "=0.21.8-pre", path = "../tflite", optional = true } +tract-core.workspace = true +tract-hir.workspace = true +tract-onnx = { workspace = true, optional = true } +tract-tflite.workspace = true [features] # hir = ["tract-hir"] diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index b139ebfb2a..bb9eca2bb0 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -25,7 +25,7 @@ num-traits.workspace = true paste.workspace = true rayon.workspace = true scan_fmt.workspace = true -tract-data = { version = "=0.21.8-pre", path = "../data" } +tract-data.workspace = true [build-dependencies] cc.workspace = true diff --git a/linalg/cost_model/Cargo.toml b/linalg/cost_model/Cargo.toml index 9a220f70ab..8d23d1f855 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.50" pbr = "1" readings-probe = "0.1.4" -tract-linalg = { path="../../linalg", version = "=0.21.8-pre" } -tract-data = { path="../../data", version = "=0.21.8-pre" } +tract-linalg.workspace = true +tract-data.workspace = true diff --git a/linalg/matmul-bench/Cargo.toml b/linalg/matmul-bench/Cargo.toml index d127e1111d..14e562ea73 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.8-pre" } -tract-linalg = { path = "../../linalg", version = "=0.21.8-pre" } +tract-data.workspace = true +tract-linalg.workspace = true [features] diff --git a/metal/Cargo.toml b/metal/Cargo.toml index c6f1146435..2e7c5bba82 100644 --- a/metal/Cargo.toml +++ b/metal/Cargo.toml @@ -28,7 +28,7 @@ metal.workspace = true paste.workspace = true objc = { version = "0.2.7" } num-traits.workspace = true -tract-core = { version = "=0.21.8-pre", path = "../core" } +tract-core.workspace = true [features] default = [ ] diff --git a/nnef/Cargo.toml b/nnef/Cargo.toml index 513853db8f..8d2ce5cce2 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -21,7 +21,7 @@ nom.workspace = true tar.workspace = true flate2 = { workspace = true, optional = true } walkdir.workspace = true -tract-core = { version = "=0.21.8-pre", path = "../core" } +tract-core.workspace = true [dev-dependencies] temp-dir = "0.1.11" diff --git a/nnef/cli/Cargo.toml b/nnef/cli/Cargo.toml index 824c0dce45..02968f170f 100644 --- a/nnef/cli/Cargo.toml +++ b/nnef/cli/Cargo.toml @@ -19,6 +19,6 @@ anyhow.workspace = true env_logger.workspace = true log.workspace = true structopt.workspace = true -tract-nnef = { version = "=0.21.8-pre", path = "../../nnef" } -tract-pulse = { version = "=0.21.8-pre", path = "../../pulse" } -tract-onnx-opl = { version = "=0.21.8-pre", path = "../../onnx-opl" } +tract-nnef.workspace = true +tract-pulse.workspace = true +tract-onnx-opl.workspace = true diff --git a/nnef/nnef-resources/Cargo.toml b/nnef/nnef-resources/Cargo.toml index ef529a10bf..9dea035ce5 100644 --- a/nnef/nnef-resources/Cargo.toml +++ b/nnef/nnef-resources/Cargo.toml @@ -22,6 +22,6 @@ serde_json.workspace = true serde.workspace = true anyhow.workspace = true nom.workspace = true -tract-nnef = { version = "=0.21.8-pre", path = "../../nnef" } +tract-nnef.workspace = true diff --git a/onnx-opl/Cargo.toml b/onnx-opl/Cargo.toml index 9e38bbc863..746bb53548 100644 --- a/onnx-opl/Cargo.toml +++ b/onnx-opl/Cargo.toml @@ -19,7 +19,7 @@ log.workspace = true rand.workspace = true rand_distr.workspace = true rustfft.workspace = true -tract-nnef = { version = "=0.21.8-pre", path = "../nnef" } +tract-nnef.workspace = true [dev-dependencies] env_logger.workspace = true diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index dd0804ac6d..b920a8f0a5 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -25,9 +25,9 @@ memmap2.workspace = true num-integer.workspace = true prost.workspace = true smallvec.workspace = true -tract-nnef = { version = "=0.21.8-pre", path = "../nnef" } -tract-hir = { version = "=0.21.8-pre", path = "../hir" } -tract-onnx-opl = { version = "=0.21.8-pre", path = "../onnx-opl" } +tract-nnef.workspace = true +tract-hir.workspace = true +tract-onnx-opl.workspace = true [dev-dependencies] env_logger.workspace = true diff --git a/pulse-opl/Cargo.toml b/pulse-opl/Cargo.toml index cb1c49bece..ccee9a01d3 100644 --- a/pulse-opl/Cargo.toml +++ b/pulse-opl/Cargo.toml @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" } [dependencies] downcast-rs.workspace = true lazy_static.workspace = true -tract-nnef = { version = "=0.21.8-pre", path = "../nnef" } +tract-nnef.workspace = true [features] complex = [ "tract-nnef/complex" ] diff --git a/pulse/Cargo.toml b/pulse/Cargo.toml index 2023de5bd1..a25e5e0750 100644 --- a/pulse/Cargo.toml +++ b/pulse/Cargo.toml @@ -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.8-pre", path = "../pulse-opl" } +tract-pulse-opl.workspace = true diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index b47afc5d74..5a34253ea0 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -23,8 +23,8 @@ memmap2.workspace = true prost.workspace = true prost-types.workspace = true tensorflow = { workspace = true, optional = true } -tract-hir = { version = "=0.21.8-pre", path = "../hir" } -tract-pulse = { version = "=0.21.8-pre", path = "../pulse" } +tract-hir.workspace = true +tract-pulse.workspace = true # [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 ce5eff2876..5a3160762f 100644 --- a/test-rt/infra/Cargo.toml +++ b/test-rt/infra/Cargo.toml @@ -12,7 +12,7 @@ dyn-clone.workspace = true env_logger.workspace = true itertools.workspace = true lazy_static.workspace = true -tract-core = { path = "../../core", version = "=0.21.8-pre" } +tract-core.workspace = true [target.'cfg(not(target_family = "wasm"))'.dependencies] proptest.workspace = true diff --git a/test-rt/suite-onnx/Cargo.toml b/test-rt/suite-onnx/Cargo.toml index 4ff9d254ab..076b8ac011 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.8-pre" } -tract-onnx = { path = "../../onnx" , version = "=0.21.8-pre" } -tract-hir = { path = "../../hir" , version = "=0.21.8-pre" } +tract-core.workspace = true +tract-onnx.workspace = true +tract-hir.workspace = true [features] onnx_1_4_1 = [] diff --git a/test-rt/suite-unit/Cargo.toml b/test-rt/suite-unit/Cargo.toml index 93c8fe6e1d..03c530cdc6 100644 --- a/test-rt/suite-unit/Cargo.toml +++ b/test-rt/suite-unit/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.8-pre" } +tract-core.workspace = true infra = { path = "../infra" } [target.'cfg(not(target_family = "wasm"))'.dependencies] diff --git a/test-rt/test-blas/Cargo.toml b/test-rt/test-blas/Cargo.toml index c610c6cc8c..12b5119be5 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.8-pre", features = [ "blis" ] } +tract-core.workspace = true [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.8-pre", features = [ "blis" ] } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.8-pre" } +tract-core.workspace = true +tract-onnx-opl.workspace = true diff --git a/test-rt/test-f16/Cargo.toml b/test-rt/test-f16/Cargo.toml index 85fa19bb3d..56d9c3d2ca 100644 --- a/test-rt/test-f16/Cargo.toml +++ b/test-rt/test-f16/Cargo.toml @@ -12,19 +12,19 @@ home.workspace = true lazy_static.workspace = true regex.workspace = true infra = { path = "../infra" } -tract-core = { path = "../../core" , version = "=0.21.8-pre" } +tract-core.workspace = true suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.8-pre" } +tract-onnx-opl.workspace = true [dev-dependencies] home.workspace = true regex.workspace = true lazy_static.workspace = true log.workspace = true -tract-core = { path = "../../core", version = "=0.21.8-pre" } -tract-nnef = { path = "../../nnef", version = "=0.21.8-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.8-pre" } +tract-core.workspace = true +tract-nnef.workspace = true +tract-onnx-opl.workspace = true infra = { path = "../infra" } suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } diff --git a/test-rt/test-metal/Cargo.toml b/test-rt/test-metal/Cargo.toml index a1e9062991..543c1b7b18 100644 --- a/test-rt/test-metal/Cargo.toml +++ b/test-rt/test-metal/Cargo.toml @@ -12,19 +12,19 @@ home.workspace = true lazy_static.workspace = true regex.workspace = true infra = { path = "../infra" } -tract-core = { path = "../../core" , version = "=0.21.8-pre" } +tract-core.workspace = true suite-onnx = { path = "../suite-onnx" } suite-unit = { path = "../suite-unit" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.8-pre" } +tract-onnx-opl.workspace = true [dev-dependencies] home.workspace = true regex.workspace = true lazy_static.workspace = true log.workspace = true -tract-core = { path = "../../core", version = "=0.21.8-pre" } -tract-metal = { path = "../../metal" , version = "=0.21.8-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.8-pre" } +tract-core.workspace = true +tract-metal.workspace = true +tract-onnx-opl.workspace = true 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 dcc0e62ed3..85090e9b22 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.8-pre" } +tract-core.workspace = true [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.8-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.8-pre" } -tract-nnef = { path = "../../nnef", version = "=0.21.8-pre" } +tract-core.workspace = true +tract-onnx-opl.workspace = true +tract-nnef.workspace = true diff --git a/test-rt/test-onnx-core/Cargo.toml b/test-rt/test-onnx-core/Cargo.toml index 74c70ef473..976405da79 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.8-pre" } -tract-nnef = { path = "../../nnef", version = "=0.21.8-pre" } -tract-onnx = { path = "../../onnx", version = "=0.21.8-pre" } +tract-core.workspace = true +tract-nnef.workspace = true +tract-onnx.workspace = true 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 9d53779a44..4fc6441584 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.8-pre" } +tract-onnx.workspace = true diff --git a/test-rt/test-tflite/Cargo.toml b/test-rt/test-tflite/Cargo.toml index 23c384d098..c5593eb04d 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.8-pre" } +tract-core.workspace = true 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.8-pre" } -tract-tflite = { path = "../../tflite", version = "=0.21.8-pre" } -tract-onnx-opl = { path = "../../onnx-opl", version = "=0.21.8-pre" } +tract-core.workspace = true +tract-tflite.workspace = true +tract-onnx-opl.workspace = true 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 e08eca11f3..126c09676e 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.8-pre" } +tract-core.workspace = true [dev-dependencies] suite-unit = { path = "../suite-unit" } diff --git a/tflite/Cargo.toml b/tflite/Cargo.toml index 5eb72f7b6e..8fa03566b1 100644 --- a/tflite/Cargo.toml +++ b/tflite/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" [dependencies] derive-new.workspace = true flatbuffers.workspace = true -tract-core = { version = "=0.21.8-pre", path = "../core" } +tract-core.workspace = true [features] complex = []