Files
ort/examples/cudarc/Cargo.toml
2026-02-05 20:29:24 -06:00

20 lines
527 B
TOML

[package]
publish = false
name = "example-cudarc"
version = "0.1.0"
edition = "2024"
[dependencies]
ort = { path = "../../", features = [ "cuda", "fetch-models" ] }
cudarc = "0.12"
anyhow = "1.0"
ndarray = "0.17"
image = { version = "0.25", default-features = false, features = [ "jpeg" ] }
tracing = "0.1"
show-image = { version = "0.14", features = [ "image", "raqote" ] }
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
[[example]]
name = "cudarc"
path = "cudarc.rs"