Files
ort/examples/model-info/Cargo.toml
2025-10-25 15:39:24 -05:00

22 lines
495 B
TOML

[package]
publish = false
name = "example-model-info"
version = "0.0.0"
edition = "2024"
[dependencies]
ort = { path = "../../" }
ort-candle = { path = "../../backends/candle", optional = true }
ort-tract = { path = "../../backends/tract", optional = true }
[features]
load-dynamic = [ "ort/load-dynamic" ]
backend-candle = [ "ort/alternative-backend", "dep:ort-candle" ]
backend-tract = [ "ort/alternative-backend", "dep:ort-tract" ]
[[example]]
name = "model-info"
path = "model-info.rs"