Skip to content

Commit

Permalink
chore: bump versions to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelspark committed Sep 30, 2023
1 parent cc6c107 commit ecffcc8
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 25 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 8 additions & 5 deletions wonnx-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <tao.xavier@outlook.com>", "Tommy van der Vorst <tommy@pixelspark.nl>"]
authors = [
"haixuanTao <tao.xavier@outlook.com>",
"Tommy van der Vorst <tommy@pixelspark.nl>",
]

[features]
cpu = ["tract-onnx"]
Expand All @@ -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"

Expand Down
11 changes: 7 additions & 4 deletions wonnx-preprocessing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <tao.xavier@outlook.com>", "Tommy van der Vorst <tommy@pixelspark.nl>"]
authors = [
"haixuanTao <tao.xavier@outlook.com>",
"Tommy van der Vorst <tommy@pixelspark.nl>",
]

[dependencies]
image = "0.24.2"
Expand All @@ -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"
pollster = "0.3.0"
4 changes: 2 additions & 2 deletions wonnx-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wonnx-py"
version = "0.5.0"
version = "0.5.1"
edition = "2018"
authors = [
"haixuanTao <tao.xavier@outlook.com>",
Expand All @@ -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"
Expand Down
15 changes: 10 additions & 5 deletions wonnx-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
[package]
name = "wonnx-wasm"
version = "0.5.0"
authors = ["haixuanTao <tao.xavier@outlook.com>", "Tommy van der Vorst <tommy@pixelspark.nl>"]
version = "0.5.1"
authors = [
"haixuanTao <tao.xavier@outlook.com>",
"Tommy van der Vorst <tommy@pixelspark.nl>",
]
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."
Expand All @@ -12,7 +15,7 @@ exclude = [
"etc/**/*",
".github/**/**",
"coverage/**/**",
"examples/**/*",
"examples/**/*",
"target/**/*",
"tests/**/*",
"Cargo.lock",
Expand All @@ -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"
Expand Down
11 changes: 7 additions & 4 deletions wonnx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
[package]
name = "wonnx"
version = "0.5.0"
authors = ["haixuanTao <tao.xavier@outlook.com>", "Tommy van der Vorst <tommy@pixelspark.nl>"]
version = "0.5.1"
authors = [
"haixuanTao <tao.xavier@outlook.com>",
"Tommy van der Vorst <tommy@pixelspark.nl>",
]
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."
Expand All @@ -12,7 +15,7 @@ exclude = [
"etc/**/*",
".github/**/**",
"coverage/**/**",
"examples/**/*",
"examples/**/*",
"target/**/*",
"tests/**/*",
"Cargo.lock",
Expand All @@ -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"
Expand Down

0 comments on commit ecffcc8

Please sign in to comment.