[package]
edition = "2024"
rust-version = "1.85"
name = "gpufft-cuda-sys"
version = "0.1.2"
authors = ["Alejandro Soto Franco <sotofranco.eng@gmail.com>"]
build = "build.rs"
links = "cufft"
include = [
"/src/**/*",
"/wrapper.h",
"/build.rs",
"/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Raw FFI bindings to cuFFT + CUDA Runtime. Internal plumbing for gpufft."
homepage = "https://github.com/alejandro-soto-franco/gpufft"
readme = "README.md"
keywords = [
"fft",
"cuda",
"cufft",
"ffi",
"gpu",
]
categories = [
"external-ffi-bindings",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/alejandro-soto-franco/gpufft"
resolver = "2"
[lib]
name = "gpufft_cuda_sys"
path = "src/lib.rs"
doctest = false
[build-dependencies.bindgen]
version = "0.71"
[lints.clippy]
missing_safety_doc = "warn"
ptr_as_ptr = "warn"
ref_as_ptr = "warn"
undocumented_unsafe_blocks = "warn"
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "warn"