From b8492191d170c67af90841aa6d7641f9d865d5bb Mon Sep 17 00:00:00 2001 From: "Carson M." Date: Mon, 27 Nov 2023 22:47:23 -0600 Subject: [PATCH] 2.0.0-alpha.2 --- Cargo.toml | 4 ++-- README.md | 2 +- ort-sys/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cafa332..f025edd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ default-members = [ [package] name = "ort" description = "A safe Rust wrapper for ONNX Runtime 1.16 - Optimize and Accelerate Machine Learning Inferencing" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" edition = "2021" rust-version = "1.70" license = "MIT OR Apache-2.0" @@ -70,7 +70,7 @@ qnn = [ "ort-sys/qnn" ] [dependencies] ndarray = { version = "0.15", optional = true } thiserror = "1.0" -ort-sys = { version = "2.0.0-alpha.1", path = "ort-sys" } +ort-sys = { version = "2.0.0-alpha.2", path = "ort-sys" } libloading = { version = "0.8", optional = true } ureq = { version = "2.1", optional = true, default-features = false, features = [ "tls" ] } diff --git a/README.md b/README.md index 0043989..b512344 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@
Coverage Results Crates.io Open Collective backers and sponsors
- Crates.io ONNX Runtime + Crates.io ONNX Runtime `ort` is an (unofficial) [ONNX Runtime](https://onnxruntime.ai/) 1.16 wrapper for Rust based on the now inactive [`onnxruntime-rs`](https://github.com/nbigaouette/onnxruntime-rs). ONNX Runtime accelerates ML inference on both CPU & GPU. diff --git a/ort-sys/Cargo.toml b/ort-sys/Cargo.toml index 430736f..198886f 100644 --- a/ort-sys/Cargo.toml +++ b/ort-sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ort-sys" description = "Unsafe Rust bindings for ONNX Runtime 1.16 - Optimize and Accelerate Machine Learning Inferencing" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" edition = "2021" rust-version = "1.70" license = "MIT OR Apache-2.0"