diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c37313ce07..606b037670 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract" -version = "0.10.11-pre" +version = "0.11.0" authors = [ "Romain Liautaud ", "Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -35,13 +35,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.0" +tract-hir = "0.11.0" +tract-nnef = "0.11.0" +tract-pulse = { optional = true, version = "0.11.0" } +tract-kaldi = { optional = true, version = "0.11.0" } +tract-onnx = { optional = true, version = "0.11.0" } +tract-tensorflow = { optional = true, version = "0.11.0" } [features] default = ["kaldi", "onnx", "tf", "pulse"] diff --git a/core/Cargo.toml b/core/Cargo.toml index 0d6b57a87c..2279ff53a4 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-core" -version = "0.10.11-pre" +version = "0.11.0" license = "MIT/Apache-2.0" authors = ["Mathieu Poumeyrol "] description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -28,7 +28,7 @@ num-integer = "0.1" num-traits = "0.2" dyn-clone = "1" smallvec = "1" -tract-linalg = { path = "../linalg" } +tract-linalg = "0.11.0" [features] default = [ ] diff --git a/hir/Cargo.toml b/hir/Cargo.toml index 8ca91f43fb..7125e8f75a 100644 --- a/hir/Cargo.toml +++ b/hir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-hir" -version = "0.10.11-pre" +version = "0.11.0" 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.0" +tract-pulse = "0.11.0" [dev-dependencies] env_logger = "0.7" diff --git a/kaldi/Cargo.toml b/kaldi/Cargo.toml index bb823e170a..7a1888d723 100644 --- a/kaldi/Cargo.toml +++ b/kaldi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-kaldi" -version = "0.10.11-pre" +version = "0.11.0" 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.0" +tract-pulse = "0.11.0" diff --git a/linalg/Cargo.toml b/linalg/Cargo.toml index 36e4e492ae..d5d419b325 100644 --- a/linalg/Cargo.toml +++ b/linalg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-linalg" -version = "0.10.11-pre" +version = "0.11.0" 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 30a185279c..6510c8d99a 100644 --- a/nnef/Cargo.toml +++ b/nnef/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-nnef" -version = "0.10.11-pre" +version = "0.11.0" 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.0" walkdir = "2" diff --git a/onnx-opl/Cargo.toml b/onnx-opl/Cargo.toml index bb96249255..8f56886cf3 100644 --- a/onnx-opl/Cargo.toml +++ b/onnx-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx-opl" -version = "0.10.8-pre" +version = "0.11.0" 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.0" educe = "=0.4.11" # locked for rust 1.41.0 diff --git a/onnx/Cargo.toml b/onnx/Cargo.toml index c8690000cb..5ebbffe428 100644 --- a/onnx/Cargo.toml +++ b/onnx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-onnx" -version = "0.10.11-pre" +version = "0.11.0" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -22,9 +22,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.0" +tract-nnef = "0.11.0" +tract-onnx-opl = "0.11.0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7" diff --git a/post-release.sh b/post-release.sh index 4a6252c87a..b182d217ad 100755 --- a/post-release.sh +++ b/post-release.sh @@ -1,7 +1,7 @@ #!/bin/sh VERSION=$1 -CRATES="linalg core nnef hir tensorflow pulse-opl pulse onnx-opl onnx kaldi cli" +CRATES="linalg core nnef pulse-opl pulse hir tensorflow onnx-opl onnx kaldi cli" if [ `uname` = "Darwin" ] then diff --git a/pulse-opl/Cargo.toml b/pulse-opl/Cargo.toml index df47412015..bc9d802f5f 100644 --- a/pulse-opl/Cargo.toml +++ b/pulse-opl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse-opl" -version = "0.10.8-pre" +version = "0.11.0" 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.0" diff --git a/pulse/Cargo.toml b/pulse/Cargo.toml index d9d73d25c4..3de6a0a089 100644 --- a/pulse/Cargo.toml +++ b/pulse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-pulse" -version = "0.10.8-pre" +version = "0.11.0" 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.0" diff --git a/release.sh b/release.sh index b610ddd7c4..7e0baf330e 100755 --- a/release.sh +++ b/release.sh @@ -2,7 +2,7 @@ CRATE=$1 VERSION=$2 -CRATES="linalg core nnef hir tensorflow pulse-opl pulse onnx-opl onnx kaldi cli" +CRATES="linalg core nnef pulse-opl pulse hir tensorflow onnx-opl onnx kaldi cli" if [ `uname` = "Darwin" ] then diff --git a/tensorflow/Cargo.toml b/tensorflow/Cargo.toml index 77945033d4..d8c7c56c93 100644 --- a/tensorflow/Cargo.toml +++ b/tensorflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tract-tensorflow" -version = "0.10.11-pre" +version = "0.11.0" authors = ["Mathieu Poumeyrol "] license = "MIT/Apache-2.0" description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference" @@ -22,7 +22,8 @@ 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.11.0" +tract-pulse = "0.11.0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] memmap = "0.7" @@ -38,7 +39,6 @@ criterion = "0.3" env_logger = "0.7" proptest = "0.10" rand = "0.7" -tract-pulse = { path = "../pulse" } # [[bench]] # name = "conv"