diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 01342ff3f7..d6712fb1a3 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.10.7-pre" +version = "0.10.7" 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.7" +tract-hir = "0.10.7" +tract-kaldi = { optional = true, version = "0.10.7" } +tract-nnef = { optional = true, version = "0.10.7" } +tract-onnx = { optional = true, version = "0.10.7" } +tract-tensorflow = { optional = true, version = "0.10.7" } colorous = "1.0.2" serde = "1.0.110" serde_json = "1.0.53" diff --git a/core/Cargo.toml b/core/Cargo.toml index 92dcabfaa3..412326bfb5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.10.7-pre" +version = "0.10.7" 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.7" [features] default = [ ] diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 386b9ea64a..b4be63f723 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.10.7-pre" +version = "0.10.7" 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.7" [dev-dependencies] env_logger = "0.7" diff --git a/kaldi/Cargo.toml b/kaldi/Cargo.toml index e262c536ba..53d28f1d56 100644 --- a/kaldi/Cargo.toml +++ b/kaldi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-kaldi" -version = "0.10.7-pre" +version = "0.10.7" 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.7" diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index 454d0efeb0..4bbbdb9ee1 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.10.7-pre" +version = "0.10.7" 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 050cbc2877..8aa4974660 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.10.7-pre" +version = "0.10.7" 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.7" walkdir = "2" diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index d4be5ba687..e9fc0e6cda 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.10.7-pre" +version = "0.10.7" 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.7" +tract-nnef = "0.10.7" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7" diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 7c3eba2a01..d8a830ab7d 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.10.7-pre" +version = "0.10.7" 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.7" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7"