[package]
edition = "2021"
rust-version = "1.85"
name = "arrowmetal"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Apache Arrow compute on Apple silicon GPUs, for arrow-rs"
homepage = "https://arrowmetal.org"
documentation = "https://github.com/singhpratech/ArrowMetal/blob/main/docs/RUST.md"
readme = "README.md"
keywords = [
"arrow",
"metal",
"gpu",
"apple-silicon",
]
categories = ["api-bindings"]
license = "Apache-2.0"
repository = "https://github.com/singhpratech/ArrowMetal"
[package.metadata.docs.rs]
targets = ["aarch64-apple-darwin"]
[lib]
name = "arrowmetal"
path = "src/lib.rs"
[[example]]
name = "bench"
path = "examples/bench.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[test]]
name = "compute"
path = "tests/compute.rs"
[[test]]
name = "copy_rule"
path = "tests/copy_rule.rs"
[[test]]
name = "plan"
path = "tests/plan.rs"
[[test]]
name = "signatures"
path = "tests/signatures.rs"
[dependencies.arrow]
version = "59"
features = ["ffi"]
default-features = false
[dependencies.arrowmetal-sys]
version = "0.1.0"
[dev-dependencies.arrow]
version = "59"
features = ["ffi"]
default-features = false
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.static_assertions]
version = "1.1"