phastft 0.4.0

A high-performance Fast Fourier Transform (FFT) library written in pure and safe Rust
Documentation
# 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 = "2021"
rust-version = "1.88"
name = "phastft"
version = "0.4.0"
authors = [
    "Saveliy Yusufov",
    "Shnatsel",
]
build = false
exclude = [
    ".github",
    "assets",
    "benches",
    "codecov.yml",
    "hooks",
    "profile.sh",
    "rust-toolchain.toml",
    "rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance Fast Fourier Transform (FFT) library written in pure and safe Rust"
documentation = "https://docs.rs/phastft"
readme = "README.md"
keywords = [
    "quantum",
    "fft",
    "discrete",
    "fourier",
    "transform",
]
categories = [
    "algorithms",
    "mathematics",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/smu160/PhastFT"

[package.metadata.docs.rs]
all-features = true

[features]
bench-internals = ["complex-nums"]
complex-nums = [
    "dep:num-complex",
    "dep:bytemuck",
]
default = []
parallel = ["dep:rayon"]

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

[[example]]
name = "benchmark"
path = "examples/benchmark.rs"

[[example]]
name = "benchmark_dit_planner"
path = "examples/benchmark_dit_planner.rs"

[[example]]
name = "fftwrb"
path = "examples/fftwrb.rs"

[[example]]
name = "profile"
path = "examples/profile.rs"

[[example]]
name = "rustfft"
path = "examples/rustfft.rs"

[dependencies.bytemuck]
version = "1.25.0"
optional = true

[dependencies.fearless_simd]
version = "0.4.1"

[dependencies.num-complex]
version = "0.4.6"
features = ["bytemuck"]
optional = true

[dependencies.num-traits]
version = "0.2.19"

[dependencies.rayon]
version = "1.11.0"
optional = true

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.fftw]
version = "0.8.0"

[dev-dependencies.rand]
version = "0.10.1"

[dev-dependencies.realfft]
version = "3.5.0"

[lints.rust]

[profile.profiling]
debug = 2
inherits = "release"