-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc6c107
commit ecffcc8
Showing
6 changed files
with
39 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>", "Tommy van der Vorst <[email protected]>"] | ||
authors = [ | ||
"haixuanTao <[email protected]>", | ||
"Tommy van der Vorst <[email protected]>", | ||
] | ||
|
||
[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" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>", "Tommy van der Vorst <[email protected]>"] | ||
authors = [ | ||
"haixuanTao <[email protected]>", | ||
"Tommy van der Vorst <[email protected]>", | ||
] | ||
|
||
[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" | ||
pollster = "0.3.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>", | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "wonnx-wasm" | ||
version = "0.5.0" | ||
authors = ["haixuanTao <[email protected]>", "Tommy van der Vorst <[email protected]>"] | ||
version = "0.5.1" | ||
authors = [ | ||
"haixuanTao <[email protected]>", | ||
"Tommy van der Vorst <[email protected]>", | ||
] | ||
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "wonnx" | ||
version = "0.5.0" | ||
authors = ["haixuanTao <[email protected]>", "Tommy van der Vorst <[email protected]>"] | ||
version = "0.5.1" | ||
authors = [ | ||
"haixuanTao <[email protected]>", | ||
"Tommy van der Vorst <[email protected]>", | ||
] | ||
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" | ||
|