mirror of
https://github.com/pykeio/ort
synced 2026-04-25 16:34:55 +02:00
2.0.0-rc.12
This commit is contained in:
@@ -23,7 +23,7 @@ exclude = [
|
||||
[package]
|
||||
name = "ort"
|
||||
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"
|
||||
rust-version = "1.88"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -36,7 +36,7 @@ authors = [
|
||||
"pyke.io <contact@pyke.io>",
|
||||
"Nicolas Bigaouette <nbigaouette@gmail.com>"
|
||||
]
|
||||
include = [ "/src/", "/LICENSE-APACHE", "/LICENSE-MIT", "/README.md" ]
|
||||
include = [ "/src/", "/LICENSE-APACHE", "/LICENSE-MIT" ]
|
||||
|
||||
[badges.maintenance]
|
||||
status = "actively-developed"
|
||||
@@ -102,7 +102,7 @@ azure = [ "ort-sys/azure" ]
|
||||
nvrtx = [ "ort-sys/nvrtx" ]
|
||||
|
||||
[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" ] }
|
||||
|
||||
ndarray = { version = "0.17", default-features = false, optional = true }
|
||||
|
||||
@@ -22,7 +22,7 @@ When you need to deploy a PyTorch/TensorFlow/Keras/scikit-learn/PaddlePaddle mod
|
||||
|
||||
## 📖 Documentation
|
||||
- [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)
|
||||
- [Migrating from v1.x to v2.0](https://ort.pyke.io/migrating/v2)
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "ort-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"
|
||||
rust-version = "1.88"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -31,7 +31,7 @@ path = "lib.rs"
|
||||
[features]
|
||||
|
||||
[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]
|
||||
ort-sys = { workspace = true }
|
||||
@@ -40,7 +40,7 @@ candle-onnx = { version = "=0.9.2" }
|
||||
prost = { version = "0.14.1", default-features = false }
|
||||
|
||||
[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]]
|
||||
name = "memory"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "ort-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"
|
||||
rust-version = "1.88"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -31,7 +31,7 @@ path = "lib.rs"
|
||||
[features]
|
||||
|
||||
[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]
|
||||
ort-sys = { workspace = true }
|
||||
@@ -39,7 +39,7 @@ tract-onnx = "0.22"
|
||||
parking_lot = "0.12"
|
||||
|
||||
[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"
|
||||
ndarray = "0.17"
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ resolver = "2"
|
||||
[package]
|
||||
name = "ort-web"
|
||||
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"
|
||||
rust-version = "1.88"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -23,8 +23,8 @@ path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
js-sys = "0.3.87"
|
||||
ort = { path = "../../", version = "=2.0.0-rc.11", 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 = { 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.12", default-features = false, features = [ "disable-linking", "api-17" ] }
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
serde-wasm-bindgen = "0.6"
|
||||
wasm-bindgen = "0.2.110"
|
||||
|
||||
@@ -22,7 +22,7 @@ $ git clone https://github.com/pykeio/ort
|
||||
|
||||
To run an example for a specific version, add `--branch`:
|
||||
```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>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "ort-sys"
|
||||
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"
|
||||
rust-version = "1.88"
|
||||
links = "onnxruntime"
|
||||
|
||||
Reference in New Issue
Block a user