Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.

Commit ecffcc8

Browse files
committed
chore: bump versions to 0.5.1
1 parent cc6c107 commit ecffcc8

File tree

6 files changed

+39
-25
lines changed

6 files changed

+39
-25
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wonnx-cli/Cargo.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
[package]
22
name = "wonnx-cli"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
repository = "https://github.com/webonnx/wonnx.git"
66
homepage = "https://github.com/webonnx/wonnx"
77
license = "MIT OR Apache-2.0"
88
description = "CLI for WONNX. WONNX is an ONNX runtime based on wgpu aimed at being a universal GPU runtime, written in Rust."
99
readme = "./README.md"
10-
authors = ["haixuanTao <[email protected]>", "Tommy van der Vorst <[email protected]>"]
10+
authors = [
11+
"haixuanTao <[email protected]>",
12+
"Tommy van der Vorst <[email protected]>",
13+
]
1114

1215
[features]
1316
cpu = ["tract-onnx"]
@@ -24,12 +27,12 @@ log = "0.4.17"
2427
ndarray = "0.15.4"
2528
prettytable-rs = "^0.10.0"
2629
protobuf = { version = "2.27.1", features = ["with-bytes"] }
27-
structopt = { version = "0.3.26", features = [ "paw" ] }
30+
structopt = { version = "0.3.26", features = ["paw"] }
2831
thiserror = "1.0.31"
2932
tract-onnx = { version = "0.19.12", optional = true }
3033
wgpu = "0.16.0"
31-
wonnx = { version = "^0.5.0" }
32-
wonnx-preprocessing = { version = "^0.5.0" }
34+
wonnx = { version = "^0.5.1" }
35+
wonnx-preprocessing = { version = "^0.5.1" }
3336
human_bytes = "0.4.1"
3437
pollster = "0.3.0"
3538

wonnx-preprocessing/Cargo.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
[package]
22
name = "wonnx-preprocessing"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Preprocessing utility crate for WONNX. WONNX is an ONNX runtime based on wgpu aimed at being a universal GPU runtime, written in Rust."
77
repository = "https://github.com/webonnx/wonnx.git"
88
homepage = "https://github.com/webonnx/wonnx"
99
readme = "../README.md"
10-
authors = ["haixuanTao <[email protected]>", "Tommy van der Vorst <[email protected]>"]
10+
authors = [
11+
"haixuanTao <[email protected]>",
12+
"Tommy van der Vorst <[email protected]>",
13+
]
1114

1215
[dependencies]
1316
image = "0.24.2"
@@ -18,10 +21,10 @@ thiserror = "1.0.31"
1821
tokenizers = "0.13.3"
1922
tract-onnx = { version = "0.19.2", optional = true }
2023
wgpu = "0.16.0"
21-
wonnx = { version = "^0.5.0" }
24+
wonnx = { version = "^0.5.1" }
2225
serde_json = "^1.0"
2326
bytemuck = "1.9.1"
2427

2528
[dev-dependencies]
2629
env_logger = "0.10.0"
27-
pollster = "0.3.0"
30+
pollster = "0.3.0"

wonnx-py/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wonnx-py"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2018"
55
authors = [
66
"haixuanTao <[email protected]>",
@@ -14,7 +14,7 @@ homepage = "https://github.com/webonnx/wonnx"
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
wonnx = { version = "^0.5.0" }
17+
wonnx = { version = "^0.5.1" }
1818
protobuf = { version = "2.27.1", features = ["with-bytes"] }
1919
pyo3 = { version = "0.18.1", features = ["abi3-py37"] }
2020
pollster = "0.3.0"

wonnx-wasm/Cargo.toml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "wonnx-wasm"
3-
version = "0.5.0"
4-
authors = ["haixuanTao <[email protected]>", "Tommy van der Vorst <[email protected]>"]
3+
version = "0.5.1"
4+
authors = [
5+
"haixuanTao <[email protected]>",
6+
"Tommy van der Vorst <[email protected]>",
7+
]
58
edition = "2018"
69
license = "MIT OR Apache-2.0"
710
description = "Wonnx is an ONNX runtime based on wgpu aimed at being a universal GPU runtime, written in Rust."
@@ -12,7 +15,7 @@ exclude = [
1215
"etc/**/*",
1316
".github/**/**",
1417
"coverage/**/**",
15-
"examples/**/*",
18+
"examples/**/*",
1619
"target/**/*",
1720
"tests/**/*",
1821
"Cargo.lock",
@@ -22,12 +25,14 @@ exclude = [
2225
crate-type = ["cdylib"]
2326

2427
[dependencies]
25-
wonnx = { version = "^0.5.0" }
28+
wonnx = { version = "^0.5.1" }
2629
log = "0.4.17"
2730
console_log = "0.2.2"
2831
console_error_panic_hook = "0.1.7"
2932
getrandom = { version = "0.2.6", features = ["js"] }
30-
wasm-bindgen = { version = "0.2.80", features = ["serde-serialize"] } # remember to change version in wiki as well
33+
wasm-bindgen = { version = "0.2.80", features = [
34+
"serde-serialize",
35+
] } # remember to change version in wiki as well
3136
wasm-bindgen-futures = "0.4.30"
3237
wasm-bindgen-test = "0.3.30"
3338
serde-wasm-bindgen = "0.5.0"

wonnx/Cargo.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "wonnx"
3-
version = "0.5.0"
4-
authors = ["haixuanTao <[email protected]>", "Tommy van der Vorst <[email protected]>"]
3+
version = "0.5.1"
4+
authors = [
5+
"haixuanTao <[email protected]>",
6+
"Tommy van der Vorst <[email protected]>",
7+
]
58
edition = "2018"
69
license = "MIT OR Apache-2.0"
710
description = "Wonnx is an ONNX runtime based on wgpu aimed at being a universal GPU runtime, written in Rust."
@@ -12,7 +15,7 @@ exclude = [
1215
"etc/**/*",
1316
".github/**/**",
1417
"coverage/**/**",
15-
"examples/**/*",
18+
"examples/**/*",
1619
"target/**/*",
1720
"tests/**/*",
1821
"Cargo.lock",
@@ -35,7 +38,7 @@ async-recursion = "^1"
3538
# See GpuTensor::read_to_vec
3639
[target.'cfg(target_arch = "wasm32")'.dependencies]
3740
futures = "^0.3.26"
38-
parking_lot = { version = "0.11.1", features = ["wasm-bindgen"]}
41+
parking_lot = { version = "0.11.1", features = ["wasm-bindgen"] }
3942

4043
[dev-dependencies]
4144
image = "0.24.2"

0 commit comments

Comments
 (0)