From ecffcc8ac88a449afccae9ee3af0d2f3eb0ff535 Mon Sep 17 00:00:00 2001 From: Tommy van der Vorst Date: Sat, 30 Sep 2023 11:01:59 +0200 Subject: [PATCH] chore: bump versions to 0.5.1 --- Cargo.lock | 10 +++++----- wonnx-cli/Cargo.toml | 13 ++++++++----- wonnx-preprocessing/Cargo.toml | 11 +++++++---- wonnx-py/Cargo.toml | 4 ++-- wonnx-wasm/Cargo.toml | 15 ++++++++++----- wonnx/Cargo.toml | 11 +++++++---- 6 files changed, 39 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 59135e16..836424dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4167,7 +4167,7 @@ dependencies = [ [[package]] name = "wonnx" -version = "0.5.0" +version = "0.5.1" dependencies = [ "approx", "async-recursion", @@ -4191,7 +4191,7 @@ dependencies = [ [[package]] name = "wonnx-cli" -version = "0.5.0" +version = "0.5.1" dependencies = [ "assert_cmd", "async-trait", @@ -4212,7 +4212,7 @@ dependencies = [ [[package]] name = "wonnx-preprocessing" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bytemuck", "env_logger", @@ -4231,7 +4231,7 @@ dependencies = [ [[package]] name = "wonnx-py" -version = "0.5.0" +version = "0.5.1" dependencies = [ "env_logger", "pollster", @@ -4242,7 +4242,7 @@ dependencies = [ [[package]] name = "wonnx-wasm" -version = "0.5.0" +version = "0.5.1" dependencies = [ "console_error_panic_hook", "console_log", diff --git a/wonnx-cli/Cargo.toml b/wonnx-cli/Cargo.toml index f9f1fe7c..871341b5 100644 --- a/wonnx-cli/Cargo.toml +++ b/wonnx-cli/Cargo.toml @@ -1,13 +1,16 @@ [package] name = "wonnx-cli" -version = "0.5.0" +version = "0.5.1" edition = "2021" repository = "https://github.com/webonnx/wonnx.git" homepage = "https://github.com/webonnx/wonnx" license = "MIT OR Apache-2.0" description = "CLI for WONNX. WONNX is an ONNX runtime based on wgpu aimed at being a universal GPU runtime, written in Rust." readme = "./README.md" -authors = ["haixuanTao ", "Tommy van der Vorst "] +authors = [ + "haixuanTao ", + "Tommy van der Vorst ", +] [features] cpu = ["tract-onnx"] @@ -24,12 +27,12 @@ log = "0.4.17" ndarray = "0.15.4" prettytable-rs = "^0.10.0" protobuf = { version = "2.27.1", features = ["with-bytes"] } -structopt = { version = "0.3.26", features = [ "paw" ] } +structopt = { version = "0.3.26", features = ["paw"] } thiserror = "1.0.31" tract-onnx = { version = "0.19.12", optional = true } wgpu = "0.16.0" -wonnx = { version = "^0.5.0" } -wonnx-preprocessing = { version = "^0.5.0" } +wonnx = { version = "^0.5.1" } +wonnx-preprocessing = { version = "^0.5.1" } human_bytes = "0.4.1" pollster = "0.3.0" diff --git a/wonnx-preprocessing/Cargo.toml b/wonnx-preprocessing/Cargo.toml index 2b19edfc..8e9cd427 100644 --- a/wonnx-preprocessing/Cargo.toml +++ b/wonnx-preprocessing/Cargo.toml @@ -1,13 +1,16 @@ [package] name = "wonnx-preprocessing" -version = "0.5.0" +version = "0.5.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Preprocessing utility crate for WONNX. WONNX is an ONNX runtime based on wgpu aimed at being a universal GPU runtime, written in Rust." repository = "https://github.com/webonnx/wonnx.git" homepage = "https://github.com/webonnx/wonnx" readme = "../README.md" -authors = ["haixuanTao ", "Tommy van der Vorst "] +authors = [ + "haixuanTao ", + "Tommy van der Vorst ", +] [dependencies] image = "0.24.2" @@ -18,10 +21,10 @@ thiserror = "1.0.31" tokenizers = "0.13.3" tract-onnx = { version = "0.19.2", optional = true } wgpu = "0.16.0" -wonnx = { version = "^0.5.0" } +wonnx = { version = "^0.5.1" } serde_json = "^1.0" bytemuck = "1.9.1" [dev-dependencies] env_logger = "0.10.0" -pollster = "0.3.0" \ No newline at end of file +pollster = "0.3.0" diff --git a/wonnx-py/Cargo.toml b/wonnx-py/Cargo.toml index 4aade622..0dbd6c91 100644 --- a/wonnx-py/Cargo.toml +++ b/wonnx-py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wonnx-py" -version = "0.5.0" +version = "0.5.1" edition = "2018" authors = [ "haixuanTao ", @@ -14,7 +14,7 @@ homepage = "https://github.com/webonnx/wonnx" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wonnx = { version = "^0.5.0" } +wonnx = { version = "^0.5.1" } protobuf = { version = "2.27.1", features = ["with-bytes"] } pyo3 = { version = "0.18.1", features = ["abi3-py37"] } pollster = "0.3.0" diff --git a/wonnx-wasm/Cargo.toml b/wonnx-wasm/Cargo.toml index b53f21a0..6f555371 100644 --- a/wonnx-wasm/Cargo.toml +++ b/wonnx-wasm/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "wonnx-wasm" -version = "0.5.0" -authors = ["haixuanTao ", "Tommy van der Vorst "] +version = "0.5.1" +authors = [ + "haixuanTao ", + "Tommy van der Vorst ", +] edition = "2018" license = "MIT OR Apache-2.0" description = "Wonnx is an ONNX runtime based on wgpu aimed at being a universal GPU runtime, written in Rust." @@ -12,7 +15,7 @@ exclude = [ "etc/**/*", ".github/**/**", "coverage/**/**", - "examples/**/*", + "examples/**/*", "target/**/*", "tests/**/*", "Cargo.lock", @@ -22,12 +25,14 @@ exclude = [ crate-type = ["cdylib"] [dependencies] -wonnx = { version = "^0.5.0" } +wonnx = { version = "^0.5.1" } log = "0.4.17" console_log = "0.2.2" console_error_panic_hook = "0.1.7" getrandom = { version = "0.2.6", features = ["js"] } -wasm-bindgen = { version = "0.2.80", features = ["serde-serialize"] } # remember to change version in wiki as well +wasm-bindgen = { version = "0.2.80", features = [ + "serde-serialize", +] } # remember to change version in wiki as well wasm-bindgen-futures = "0.4.30" wasm-bindgen-test = "0.3.30" serde-wasm-bindgen = "0.5.0" diff --git a/wonnx/Cargo.toml b/wonnx/Cargo.toml index 53143f46..07bbb740 100644 --- a/wonnx/Cargo.toml +++ b/wonnx/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "wonnx" -version = "0.5.0" -authors = ["haixuanTao ", "Tommy van der Vorst "] +version = "0.5.1" +authors = [ + "haixuanTao ", + "Tommy van der Vorst ", +] edition = "2018" license = "MIT OR Apache-2.0" description = "Wonnx is an ONNX runtime based on wgpu aimed at being a universal GPU runtime, written in Rust." @@ -12,7 +15,7 @@ exclude = [ "etc/**/*", ".github/**/**", "coverage/**/**", - "examples/**/*", + "examples/**/*", "target/**/*", "tests/**/*", "Cargo.lock", @@ -35,7 +38,7 @@ async-recursion = "^1" # See GpuTensor::read_to_vec [target.'cfg(target_arch = "wasm32")'.dependencies] futures = "^0.3.26" -parking_lot = { version = "0.11.1", features = ["wasm-bindgen"]} +parking_lot = { version = "0.11.1", features = ["wasm-bindgen"] } [dev-dependencies] image = "0.24.2"