[package]
edition = "2021"
rust-version = "1.85"
name = "starpu-sys"
version = "3.1.0"
authors = ["Hadrien G."]
build = "build.rs"
links = "starpu"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level bindings to the StarPU runtime"
readme = "README.md"
keywords = [
"distributed",
"heterogenerous",
"runtime",
"parallel",
"scheduling",
]
categories = [
"asynchronous",
"concurrency",
"external-ffi-bindings",
"hardware-support",
"memory-management",
]
license = "MPL-2.0"
repository = "https://github.com/HadrienG2/starpu-rs"
[package.metadata.docs.rs]
features = ["opencl"]
[features]
opencl = ["dep:cl-sys"]
[lib]
name = "starpu_sys"
path = "src/lib.rs"
[[test]]
name = "vector_scal"
path = "tests/vector_scal.rs"
[dependencies.cl-sys]
version = "0.4.3"
optional = true
[dependencies.hwlocality-sys]
version = "0.7.0"
[dependencies.libc]
version = "0.2.184"
[build-dependencies.bindgen]
version = "0.72.1"
[build-dependencies.pkg-config]
version = "0.3.32"