[package]
edition = "2021"
rust-version = "1.76"
name = "apple-accelerate"
version = "0.2.1"
authors = ["Per Johansson <per@doom.fish>"]
build = "build.rs"
include = [
"build.rs",
"swift-bridge/Package.swift",
"swift-bridge/Sources/**/*",
"src/**/*",
"examples/**/*",
"tests/**/*",
"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 Accelerate framework on macOS using a Swift bridge with optional raw C FFI"
homepage = "https://github.com/doom-fish/accelerate-rs"
readme = "README.md"
keywords = [
"accelerate",
"vdsp",
"blas",
"vimage",
"apple",
]
categories = [
"api-bindings",
"os::macos-apis",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/doom-fish/accelerate-rs"
[package.metadata.docs.rs]
default-target = "aarch64-apple-darwin"
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[badges.maintenance]
status = "actively-developed"
[features]
default = []
raw-ffi = []
[lib]
name = "apple_accelerate"
crate-type = ["lib"]
path = "src/lib.rs"
[[example]]
name = "01_vdsp_fft"
path = "examples/01_vdsp_fft.rs"
[[example]]
name = "02_blas_vimage"
path = "examples/02_blas_vimage.rs"
[[example]]
name = "03_vforce_transcendentals"
path = "examples/03_vforce_transcendentals.rs"
[[example]]
name = "04_blas_linear_algebra"
path = "examples/04_blas_linear_algebra.rs"
[[example]]
name = "05_lapack_decompositions"
path = "examples/05_lapack_decompositions.rs"
[[example]]
name = "06_bnns_activation"
path = "examples/06_bnns_activation.rs"
[[example]]
name = "07_sparse_linear_algebra"
path = "examples/07_sparse_linear_algebra.rs"
[[example]]
name = "08_vimage_processing"
path = "examples/08_vimage_processing.rs"
[[example]]
name = "09_simd_math"
path = "examples/09_simd_math.rs"
[[example]]
name = "10_quadrature_integration"
path = "examples/10_quadrature_integration.rs"
[[test]]
name = "blas_tests"
path = "tests/blas_tests.rs"
[[test]]
name = "bnns_tests"
path = "tests/bnns_tests.rs"
[[test]]
name = "lapack_tests"
path = "tests/lapack_tests.rs"
[[test]]
name = "quadrature_tests"
path = "tests/quadrature_tests.rs"
[[test]]
name = "simd_tests"
path = "tests/simd_tests.rs"
[[test]]
name = "sparse_tests"
path = "tests/sparse_tests.rs"
[[test]]
name = "vdsp_tests"
path = "tests/vdsp_tests.rs"
[[test]]
name = "vforce_tests"
path = "tests/vforce_tests.rs"
[[test]]
name = "vimage_tests"
path = "tests/vimage_tests.rs"
[dependencies]
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]