diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 97ebce598f..be9197ae56 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.11.2-pre" +version = "0.11.2" authors = [ "Romain Liautaud ", "Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -34,13 +34,13 @@ regex = "1.3" serde = "1.0.110" serde_json = "1.0.53" serde_derive = "1.0.110" -tract-core = { path = "../core" } -tract-hir = { path = "../hir" } -tract-nnef = { path = "../nnef" } -tract-pulse = { optional = true, path = "../pulse" } -tract-kaldi = { optional = true, path = "../kaldi" } -tract-onnx = { optional = true, path = "../onnx" } -tract-tensorflow = { optional = true, path = "../tensorflow" } +tract-core = "0.11.2" +tract-hir = "0.11.2" +tract-nnef = "0.11.2" +tract-pulse = { optional = true, version = "0.11.2" } +tract-kaldi = { optional = true, version = "0.11.2" } +tract-onnx = { optional = true, version = "0.11.2" } +tract-tensorflow = { optional = true, version = "0.11.2" } [features] default = ["kaldi", "onnx", "tf", "pulse"] diff --git a/core/Cargo.toml b/core/Cargo.toml index 9149107429..b31376bc1b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.11.2-pre" +version = "0.11.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -29,8 +29,8 @@ num-integer = "0.1" num-traits = "0.2" dyn-clone = "1" smallvec = "1" -tract-data = { path = "../data" } -tract-linalg = { path = "../linalg" } +tract-data = "0.11.2" +tract-linalg = "0.11.2" [features] default = [ ] diff --git a/data/Cargo.toml b/data/Cargo.toml index c195b12e2b..12f35bc075 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-data" -version = "0.11.1-pre" +version = "0.11.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 6bb7983524..5b9acf162a 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.11.2-pre" +version = "0.11.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -17,8 +17,8 @@ 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-pulse = { path = "../pulse" } +tract-core = "0.11.2" +tract-pulse = "0.11.2" [dev-dependencies] env_logger = "0.7" diff --git a/kaldi/Cargo.toml b/kaldi/Cargo.toml index 1000e6df0e..eddd678d94 100644 --- a/kaldi/Cargo.toml +++ b/kaldi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-kaldi" -version = "0.11.2-pre" +version = "0.11.2" authors = [ "Mathieu Poumeyrol ", "Theodore Bluche " @@ -23,5 +23,5 @@ lazy_static = "1" log = "0.4" maplit = "1" nom = "5" -tract-hir = { path = "../hir" } -tract-pulse = { path = "../pulse" } +tract-hir = "0.11.2" +tract-pulse = "0.11.2" diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index 6e9c70548b..612a08310a 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.11.2-pre" +version = "0.11.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -22,7 +22,7 @@ lazy_static = "1.3" libc = "0.2" log = "0.4" num-traits = "0.2" -tract-data = { path = "../data" } +tract-data = "0.11.2" [build-dependencies] cc = "1.0" diff --git a/nnef/Cargo.toml b/nnef/Cargo.toml index 500b55be2f..9d0def1876 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.11.2-pre" +version = "0.11.2" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -17,5 +17,5 @@ maintenance = { status = "actively-developed" } log = "0.4" nom = "5" tar = "0.4" -tract-core = { path = "../core" } +tract-core = "0.11.2" walkdir = "2" diff --git a/onnx-opl/Cargo.toml b/onnx-opl/Cargo.toml index b0b763373c..7522ea98e9 100644 --- a/onnx-opl/Cargo.toml +++ b/onnx-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx-opl" -version = "0.11.2-pre" +version = "0.11.2" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -14,5 +14,5 @@ edition = "2018" maintenance = { status = "actively-developed" } [dependencies] -tract-nnef = { path = "../nnef" } +tract-nnef = "0.11.2" educe = "=0.4.11" # locked for rust 1.41.0 diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index a2d739e848..85a9708cf0 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.11.2-pre" +version = "0.11.2" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -23,9 +23,9 @@ log = "0.4" num-integer = "0.1" prost = "0.6" smallvec = "1" -tract-hir = { path = "../hir" } -tract-nnef = { path = "../nnef" } -tract-onnx-opl = { path = "../onnx-opl" } +tract-hir = "0.11.2" +tract-nnef = "0.11.2" +tract-onnx-opl = "0.11.2" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7" diff --git a/pulse-opl/Cargo.toml b/pulse-opl/Cargo.toml index b6eef225a6..b6d0ef0cac 100644 --- a/pulse-opl/Cargo.toml +++ b/pulse-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse-opl" -version = "0.11.2-pre" +version = "0.11.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -17,4 +17,4 @@ maintenance = { status = "actively-developed" } downcast-rs = "1.0" inventory = "0.1" lazy_static = "1.4.0" -tract-nnef = { path = "../nnef" } +tract-nnef = "0.11.2" diff --git a/pulse/Cargo.toml b/pulse/Cargo.toml index 7ddf14f31c..d0b7a15485 100644 --- a/pulse/Cargo.toml +++ b/pulse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse" -version = "0.11.2-pre" +version = "0.11.2" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -17,4 +17,4 @@ maintenance = { status = "actively-developed" } downcast-rs = "1.0" inventory = "0.1" lazy_static = "1.4.0" -tract-pulse-opl = { path = "../pulse-opl" } +tract-pulse-opl = "0.11.2" diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 928c9012e2..fc644827a0 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.11.2-pre" +version = "0.11.2" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -21,8 +21,8 @@ log = "0.4" prost = "0.6" prost-types = "0.6" tensorflow = { version = "0", optional = true } -tract-hir = { path = "../hir" } -tract-pulse = { path = "../pulse" } +tract-hir = "0.11.2" +tract-pulse = "0.11.2" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7"