ejmahler / RustFFT

RustFFT is a high-performance FFT library written in pure Rust.
Apache License 2.0
678 stars 47 forks source link

No Std Implementation planned? #116

Closed sainteckes closed 1 year ago

sainteckes commented 1 year ago

Hey! I want to use the fft for a target that is not supporting the std environment or at least needs [feature(restricted_std)]. Is it planned to add a feature like this or how much work would this involve?

ejmahler commented 1 year ago

It's safe to assume RustFFT will always depend on std. I'm not familiar with restricted_std, so I can't say whether or not we support that. Do you have a link where I can learn more?

sainteckes commented 1 year ago

Okay restricted std basically is no std. This is the case if you have custom toolchains. Thanks for your answer!