2.0.0-rc.12

This commit is contained in:
Carson M.
2026-03-04 23:02:09 -06:00
parent 079ecb4703
commit f085e4c251
7 changed files with 15 additions and 15 deletions

View File

@@ -23,7 +23,7 @@ exclude = [
[package] [package]
name = "ort" name = "ort"
description = "A safe Rust wrapper for ONNX Runtime 1.24 - Optimize and accelerate machine learning inference & training" description = "A safe Rust wrapper for ONNX Runtime 1.24 - Optimize and accelerate machine learning inference & training"
version = "2.0.0-rc.11" version = "2.0.0-rc.12"
edition = "2024" edition = "2024"
rust-version = "1.88" rust-version = "1.88"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
@@ -36,7 +36,7 @@ authors = [
"pyke.io <contact@pyke.io>", "pyke.io <contact@pyke.io>",
"Nicolas Bigaouette <nbigaouette@gmail.com>" "Nicolas Bigaouette <nbigaouette@gmail.com>"
] ]
include = [ "/src/", "/LICENSE-APACHE", "/LICENSE-MIT", "/README.md" ] include = [ "/src/", "/LICENSE-APACHE", "/LICENSE-MIT" ]
[badges.maintenance] [badges.maintenance]
status = "actively-developed" status = "actively-developed"
@@ -102,7 +102,7 @@ azure = [ "ort-sys/azure" ]
nvrtx = [ "ort-sys/nvrtx" ] nvrtx = [ "ort-sys/nvrtx" ]
[dependencies] [dependencies]
ort-sys = { version = "=2.0.0-rc.11", path = "ort-sys", default-features = false } ort-sys = { version = "=2.0.0-rc.12", path = "ort-sys", default-features = false }
smallvec = { version = "1.15", default-features = false, features = [ "const_generics" ] } smallvec = { version = "1.15", default-features = false, features = [ "const_generics" ] }
ndarray = { version = "0.17", default-features = false, optional = true } ndarray = { version = "0.17", default-features = false, optional = true }

View File

@@ -22,7 +22,7 @@ When you need to deploy a PyTorch/TensorFlow/Keras/scikit-learn/PaddlePaddle mod
## 📖 Documentation ## 📖 Documentation
- [Guide](https://ort.pyke.io/) - [Guide](https://ort.pyke.io/)
- [API reference](https://docs.rs/ort/2.0.0-rc.11/ort/) - [API reference](https://docs.rs/ort/2.0.0-rc.12/ort/)
- [Examples](https://github.com/pykeio/ort/tree/main/examples) - [Examples](https://github.com/pykeio/ort/tree/main/examples)
- [Migrating from v1.x to v2.0](https://ort.pyke.io/migrating/v2) - [Migrating from v1.x to v2.0](https://ort.pyke.io/migrating/v2)

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "ort-candle" name = "ort-candle"
description = "ort + candle = 🦀 - An alternative backend for ort, powered by candle." description = "ort + candle = 🦀 - An alternative backend for ort, powered by candle."
version = "0.2.1+0.9.2" version = "0.3.0+0.9.2"
edition = "2024" edition = "2024"
rust-version = "1.88" rust-version = "1.88"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
@@ -31,7 +31,7 @@ path = "lib.rs"
[features] [features]
[workspace.dependencies] [workspace.dependencies]
ort-sys = { version = "=2.0.0-rc.11", path = "../../ort-sys", default-features = false, features = [ "api-17" ] } ort-sys = { version = "=2.0.0-rc.12", path = "../../ort-sys", default-features = false, features = [ "api-17" ] }
[dependencies] [dependencies]
ort-sys = { workspace = true } ort-sys = { workspace = true }
@@ -40,7 +40,7 @@ candle-onnx = { version = "=0.9.2" }
prost = { version = "0.14.1", default-features = false } prost = { version = "0.14.1", default-features = false }
[dev-dependencies] [dev-dependencies]
ort = { version = "=2.0.0-rc.11", path = "../../", default-features = false, features = [ "alternative-backend", "fetch-models", "tls-rustls", "api-17" ] } ort = { version = "=2.0.0-rc.12", path = "../../", default-features = false, features = [ "alternative-backend", "fetch-models", "tls-rustls", "api-17" ] }
[[test]] [[test]]
name = "memory" name = "memory"

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "ort-tract" name = "ort-tract"
description = "ort + tract = 🦀 - An alternative backend for ort, powered by tract." description = "ort + tract = 🦀 - An alternative backend for ort, powered by tract."
version = "0.2.0+0.22" version = "0.3.0+0.22"
edition = "2024" edition = "2024"
rust-version = "1.88" rust-version = "1.88"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
@@ -31,7 +31,7 @@ path = "lib.rs"
[features] [features]
[workspace.dependencies] [workspace.dependencies]
ort-sys = { version = "=2.0.0-rc.11", path = "../../ort-sys", default-features = false, features = [ "api-17" ] } ort-sys = { version = "=2.0.0-rc.12", path = "../../ort-sys", default-features = false, features = [ "api-17" ] }
[dependencies] [dependencies]
ort-sys = { workspace = true } ort-sys = { workspace = true }
@@ -39,7 +39,7 @@ tract-onnx = "0.22"
parking_lot = "0.12" parking_lot = "0.12"
[dev-dependencies] [dev-dependencies]
ort = { version = "=2.0.0-rc.11", path = "../../", default-features = false, features = [ "alternative-backend", "fetch-models", "tls-rustls", "ndarray", "api-17" ] } ort = { version = "=2.0.0-rc.12", path = "../../", default-features = false, features = [ "alternative-backend", "fetch-models", "tls-rustls", "ndarray", "api-17" ] }
image = "0.25" image = "0.25"
ndarray = "0.17" ndarray = "0.17"

View File

@@ -4,7 +4,7 @@ resolver = "2"
[package] [package]
name = "ort-web" name = "ort-web"
description = "ONNX Runtime on the web 🌐 - An alternative backend for ort" description = "ONNX Runtime on the web 🌐 - An alternative backend for ort"
version = "0.1.0+1.24" version = "0.2.0+1.24"
edition = "2024" edition = "2024"
rust-version = "1.88" rust-version = "1.88"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
@@ -23,8 +23,8 @@ path = "lib.rs"
[dependencies] [dependencies]
js-sys = "0.3.87" js-sys = "0.3.87"
ort = { path = "../../", version = "=2.0.0-rc.11", default-features = false, features = [ "alternative-backend", "api-17" ] } ort = { path = "../../", version = "=2.0.0-rc.12", default-features = false, features = [ "alternative-backend", "api-17" ] }
ort-sys = { path = "../../ort-sys", version = "=2.0.0-rc.11", default-features = false, features = [ "disable-linking", "api-17" ] } ort-sys = { path = "../../ort-sys", version = "=2.0.0-rc.12", default-features = false, features = [ "disable-linking", "api-17" ] }
serde = { version = "1.0", features = [ "derive" ] } serde = { version = "1.0", features = [ "derive" ] }
serde-wasm-bindgen = "0.6" serde-wasm-bindgen = "0.6"
wasm-bindgen = "0.2.110" wasm-bindgen = "0.2.110"

View File

@@ -22,7 +22,7 @@ $ git clone https://github.com/pykeio/ort
To run an example for a specific version, add `--branch`: To run an example for a specific version, add `--branch`:
```shell ```shell
$ git clone https://github.com/pykeio/ort --branch v2.0.0-rc.11 $ git clone https://github.com/pykeio/ort --branch v2.0.0-rc.12
``` ```
</li> </li>
<li> <li>

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "ort-sys" name = "ort-sys"
description = "Unsafe Rust bindings for ONNX Runtime 1.24 - Optimize and Accelerate Machine Learning Inferencing" description = "Unsafe Rust bindings for ONNX Runtime 1.24 - Optimize and Accelerate Machine Learning Inferencing"
version = "2.0.0-rc.11" version = "2.0.0-rc.12"
edition = "2024" edition = "2024"
rust-version = "1.88" rust-version = "1.88"
links = "onnxruntime" links = "onnxruntime"