[package]
edition = "2024"
rust-version = "1.85"
name = "baracuda-runtime"
version = "0.0.1-alpha.33"
authors = ["The baracuda contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust wrappers for the CUDA Runtime API (devices, streams, events, managed memory, kernel launch via the library API)."
homepage = "https://github.com/ciresnave/baracuda"
readme = "README.md"
keywords = [
"cuda",
"gpu",
"nvidia",
"driver",
"runtime",
]
categories = [
"api-bindings",
"external-ffi-bindings",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ciresnave/baracuda"
[features]
default = []
driver-interop = ["dep:baracuda-driver"]
[lib]
name = "baracuda_runtime"
path = "src/lib.rs"
[[test]]
name = "external_smoke"
path = "tests/external_smoke.rs"
[[test]]
name = "gpu_smoke"
path = "tests/gpu_smoke.rs"
[[test]]
name = "runtime_extras_smoke"
path = "tests/runtime_extras_smoke.rs"
[[test]]
name = "wave1_smoke"
path = "tests/wave1_smoke.rs"
[[test]]
name = "wave2_smoke"
path = "tests/wave2_smoke.rs"
[[test]]
name = "wave3_smoke"
path = "tests/wave3_smoke.rs"
[[test]]
name = "wave4_smoke"
path = "tests/wave4_smoke.rs"
[[test]]
name = "wave5_smoke"
path = "tests/wave5_smoke.rs"
[dependencies.baracuda-core]
version = "0.0.1-alpha.33"
[dependencies.baracuda-cuda-sys]
version = "0.0.1-alpha.33"
[dependencies.baracuda-driver]
version = "0.0.1-alpha.33"
optional = true
[dependencies.baracuda-types]
version = "0.0.1-alpha.33"
[dependencies.thiserror]
version = "1"