[package]
edition = "2021"
name = "oxifft-codegen"
version = "0.1.3"
authors = ["COOLJAPAN OU (Team KitaSan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macro crate for OxiFFT codelet generation"
homepage = "https://github.com/cool-japan/oxifft"
documentation = "https://docs.rs/oxifft-codegen"
readme = "README.md"
keywords = [
"fft",
"codegen",
"proc-macro",
"simd",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxifft"
[lib]
name = "oxifft_codegen"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"parsing",
]
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"