[]
= ["cargo:."]
# Config for 'dist'
[]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
= "0.31.0"
# CI backends to support
= "github"
# The installers to generate for each app
= ["shell"]
# Target platforms to build apps for (Rust target-triple syntax)
# Note: x86_64-apple-darwin removed - ort crate doesn't provide prebuilt binaries for legacy Intel Macs
# Note: x86_64-pc-windows-msvc removed - ort crate has MSVC linker compatibility issues
# Note: aarch64-unknown-linux-gnu removed - complex C++ linker dependencies causing cross-compilation errors
= [
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
]
# Custom runners for Linux to support glibc 2.38+ required by ort (ONNX Runtime)
# Note: ubuntu-24.04 provides glibc 2.39 - binaries require Ubuntu 24.04+, Debian 13+, or equivalent
[]
= "ubuntu-24.04"