Bump the version to v0.0.11

- ONNXRuntime -> 1.19.x
- CUDA -> 12.x
- TensorRT -> 10.x
This commit is contained in:
Jamjamjon
2024-08-27 20:09:15 +08:00
committed by GitHub
parent b81b5e3cf5
commit f25f5cf2b5
9 changed files with 116 additions and 87 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "usls"
version = "0.0.10"
version = "0.0.11"
edition = "2021"
description = "A Rust library integrated with ONNXRuntime, providing a collection of ML models."
repository = "https://github.com/jamjamjon/usls"
@ -11,11 +11,13 @@ exclude = ["assets/*", "examples/*", "scripts/*", "runs/*"]
[dependencies]
clap = { version = "4.2.4", features = ["derive"] }
ndarray = { version = "0.15.6", features = ["rayon"] }
ort = { version = "2.0.0-rc.2", git = "https://github.com/pykeio/ort.git", default-features = false, features = [
ndarray = { version = "0.16.1", features = ["rayon"] }
ort = { version = "2.0.0-rc.5", default-features = false, features = [
"load-dynamic",
"copy-dylibs",
"half",
"cann",
"rknpu",
"ndarray",
"cuda",
"tensorrt",
@ -24,7 +26,7 @@ ort = { version = "2.0.0-rc.2", git = "https://github.com/pykeio/ort.git", defau
"rocm",
"openvino",
"operator-libraries"
], rev = "467d127c5877b099e1d0f605d38b74d221b6121c"}
]}
anyhow = { version = "1.0.75" }
regex = { version = "1.5.4" }
rand = { version = "0.8.5" }