[package]
edition = "2021"
rust-version = "1.76"
name = "foundation-models"
version = "0.11.3"
authors = ["Per Johansson <per@doom.fish>"]
build = "build.rs"
include = [
"src/**/*",
"swift-bridge/Package.swift",
"swift-bridge/Sources/**/*",
"build.rs",
"Cargo.toml",
"README.md",
"LICENSE-*",
"CHANGELOG.md",
"COVERAGE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust bindings for Apple's FoundationModels framework - on-device LLM on macOS 26+"
homepage = "https://github.com/doom-fish/foundation-models-rs"
readme = "README.md"
keywords = [
"foundation-models",
"llm",
"macos",
"ai",
"apple-intelligence",
]
categories = [
"api-bindings",
"os::macos-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/doom-fish/foundation-models-rs"
[package.metadata.docs.rs]
all-features = true
default-target = "aarch64-apple-darwin"
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[badges.maintenance]
status = "actively-developed"
[features]
async = ["doom-fish-utils"]
backgroundassets = ["dep:backgroundassets"]
cargo-clippy = []
default = []
macos_26_0 = []
[lib]
name = "foundation_models"
crate-type = ["lib"]
path = "src/lib.rs"
[dependencies.backgroundassets]
version = ">=0.1, <0.2"
optional = true
[dependencies.doom-fish-utils]
version = ">=0.3, <0.4"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.pollster]
version = "0.3"
[dev-dependencies.regex-lite]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"rt-multi-thread",
"macros",
]
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
[profile.release]
debug = 2
strip = "none"