mirror of
https://github.com/pykeio/ort
synced 2026-04-25 16:34:55 +02:00
22 lines
495 B
TOML
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"
|