[]
= ["cargo:."]
# Config for 'dist'
[]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
= "0.32.0"
# CI backends to support
= "github"
# The installers to generate for each app
= ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax).
# x86_64-apple-darwin (Intel Mac) is intentionally excluded: ort-sys
# 2.0.0-rc.12 ships no prebuilt ONNX Runtime binary for that target
# ("ort does not provide prebuilt binaries for the target
# `x86_64-apple-darwin`"), and there's no source-build fallback wired
# up. Re-add once ort ships one, or once this crate switches ONNX
# Runtime backends.
= ["aarch64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Path that installers should place binaries in
= "CARGO_HOME"
# Whether to install an updater program
= false
# fastembed/ort's downloaded prebuilt ONNX Runtime static libs on Windows
# are built against the dynamic CRT (MSVCRT); linking them into a
# +crt-static binary (dist's default on *-windows-msvc) leaves libcmt
# without import stubs for CRT functions like tolower/isdigit/fstat,
# which fails at link time with LNK2019/LNK1120.
= false
[]
# ort-sys's downloaded prebuilt ONNX Runtime static lib references
# glibc >= 2.38 symbols (e.g. `__isoc23_strtoll`), which dist's default
# ubuntu-22.04 runner (glibc 2.35) can't satisfy at link time — same
# reasoning as the Dockerfile's builder/runtime base image choice.
= "ubuntu-24.04"