[package]
edition = "2024"
name = "singe-cuda-sys"
version = "0.1.0-alpha.7"
build = "build.rs"
include = [
"**/*.rs",
"Cargo.toml",
"dist",
"README.md",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level FFI bindings for CUDA driver, runtime, NVRTC, NVVM, NVTX, and related NVIDIA APIs."
readme = "README.md"
keywords = [
"cuda",
"nvidia",
"ffi",
"bindings",
"nvtx",
]
license-file = "LICENSE"
repository = "https://github.com/tinrab/singe"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"dist/katex_header.html",
]
[features]
default = [
"driver_13_2",
"runtime_13_2",
"nvrtc_13_2",
"nvvm_13_2",
"nvtx_3",
]
driver = []
driver_13_2 = ["driver"]
nvrtc = []
nvrtc_13_2 = ["nvrtc"]
nvtx = []
nvtx_3 = ["nvtx"]
nvvm = []
nvvm_13_2 = ["nvvm"]
runtime = []
runtime_13_2 = ["runtime"]
[lib]
name = "singe_cuda_sys"
path = "src/lib.rs"
[dependencies.num_enum]
version = "0.7.6"
[build-dependencies.singe-cuda-find]
version = "0.1.0-alpha.7"