-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 758 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "fm-bindings"
version = "0.1.5"
edition = "2024"
authors = ["Remi d'Almeida <hello@geta.dev>"]
license = "MIT OR Apache-2.0"
description = "Rust bindings for Apple's Foundation Models framework"
repository = "https://github.com/remdalm/fm-bindings"
homepage = "https://github.com/remdalm/fm-bindings"
documentation = "https://docs.rs/fm-bindings"
readme = "README.md"
keywords = ["apple", "ios", "macos", "ai", "llm"]
categories = ["api-bindings", "os::macos-apis", "science"]
[package.metadata.docs.rs]
all-features = true
default-target = "aarch64-apple-darwin"
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "aarch64-apple-ios"]
[profile.ci]
inherits = "dev"
opt-level = 1
debug = false
incremental = true
codegen-units = 16