gpufft 0.1.2

Unified GPU-accelerated FFT for Rust: Vulkan via VkFFT, CUDA via cuFFT.
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "gpufft"
version = "0.1.2"
authors = ["Alejandro Soto Franco <sotofranco.eng@gmail.com>"]
build = "build.rs"
include = [
    "/src/**/*",
    "/shaders/**/*",
    "/build.rs",
    "/Cargo.toml",
    "/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified GPU-accelerated FFT for Rust: Vulkan via VkFFT, CUDA via cuFFT."
homepage = "https://github.com/alejandro-soto-franco/gpufft"
documentation = "https://docs.rs/gpufft"
readme = "README.md"
keywords = [
    "fft",
    "gpu",
    "vulkan",
    "cuda",
    "cufft",
]
categories = [
    "science",
    "hardware-support",
    "mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/alejandro-soto-franco/gpufft"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
cuda = ["dep:gpufft-cuda-sys"]
default = ["vulkan"]
vulkan = [
    "dep:gpufft-vulkan-sys",
    "dep:ash",
]

[lib]
name = "gpufft"
path = "src/lib.rs"

[dependencies.ash]
version = "0.38"
features = ["loaded"]
optional = true
default-features = false

[dependencies.bytemuck]
version = "1"
features = ["derive"]

[dependencies.gpufft-cuda-sys]
version = "0.1.2"
optional = true

[dependencies.gpufft-vulkan-sys]
version = "0.1.2"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.num-complex]
version = "0.4"
features = [
    "std",
    "bytemuck",
]
default-features = false

[dependencies.thiserror]
version = "2"
features = ["std"]
default-features = false

[dev-dependencies.approx]
version = "0.5"
features = ["std"]
default-features = false

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.rustfft]
version = "6"

[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"