[package]
edition = "2024"
rust-version = "1.86"
name = "amdgpu-device-libs"
version = "0.2.0"
authors = ["Flakebi <flakebi@t-online.de>"]
build = false
include = [
"/src",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Support library for the amdgpu target, linking to device-libs"
readme = "README.md"
keywords = [
"amdgpu",
"gpu",
]
categories = [
"api-bindings",
"external-ffi-bindings",
"hardware-support",
"no-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Flakebi/amdgpu-rs/tree/main/amdgpu-device-libs"
[package.metadata.docs.rs]
rustc-args = ["-Ctarget-cpu=gfx900"]
[features]
alloc = ["device_libs"]
default = [
"global_allocator",
"hostcall",
"panic_handler",
"print",
]
device_libs = []
global_allocator = ["alloc"]
hostcall = ["device_libs"]
panic_handler = []
print = ["device_libs"]
[lib]
name = "amdgpu_device_libs"
path = "src/lib.rs"