[package]
edition = "2024"
name = "rocm-sys"
version = "0.0.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ROCm system bindings configured by release version"
readme = "README.md"
license = "MIT"
[features]
amd_comgr = []
default = [
"hip",
"amd_comgr",
"hiprtc",
"rocblas",
]
dynamic-loading = ["dep:libloading"]
hip = []
hiprtc = ["hip"]
rocblas = ["hip"]
[lib]
name = "rocm_sys"
path = "src/lib.rs"
[[example]]
name = "current_test"
path = "examples/current_test.rs"
[dependencies.libloading]
version = "0.9"
optional = true
[build-dependencies.libloading]
version = "0.9"