Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
benches/ | H | 03-May-2022 | - | 237 | 163 | |
examples/ | H | 03-May-2022 | - | 29 | 21 | |
src/ | H | 03-May-2022 | - | 3,224 | 2,217 | |
tests/ | H | 03-May-2022 | - | 99 | 65 | |
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
.cargo_vcs_info.json | H A D | 28-Dec-2019 | 74 | 6 | 5 | |
.gitignore | H A D | 25-Dec-2019 | 26 | 4 | 3 | |
.travis.yml | H A D | 28-Dec-2019 | 64 | 7 | 6 | |
CHANGELOG.md | H A D | 28-Dec-2019 | 1.7 KiB | 44 | 35 | |
Cargo.lock | H A D | 28-Dec-2019 | 6.1 KiB | 140 | 122 | |
Cargo.toml | H A D | 28-Dec-2019 | 1.2 KiB | 39 | 33 | |
Cargo.toml.orig-cargo | H A D | 28-Dec-2019 | 630 | 23 | 18 | |
LICENSE-APACHE | H A D | 25-Dec-2019 | 11.1 KiB | 203 | 169 | |
LICENSE-MIT | H A D | 25-Dec-2019 | 1 KiB | 20 | 16 | |
README.md | H A D | 25-Dec-2019 | 1.1 KiB | 30 | 19 |
README.md
1# RustFFT 2 3[![Build Status](https://travis-ci.org/awelkie/RustFFT.svg?branch=master)](https://travis-ci.org/awelkie/RustFFT) 4[![](https://img.shields.io/crates/v/rustfft.svg)](https://crates.io/crates/rustfft) 5[![](https://img.shields.io/crates/l/rustfft.svg)](https://crates.io/crates/rustfft) 6[![](https://docs.rs/rustfft/badge.svg)](https://docs.rs/rustfft/) 7![minimum rustc 1.26](https://img.shields.io/badge/rustc-1.26+-red.svg) 8 9RustFFT is a mixed-radix FFT implementation written in Rust. See the [documentation](https://docs.rs/rustfft/) for more details. 10 11## Compatibility 12 13The `rustfft` crate requires rustc 1.26 or greater. 14 15## License 16 17Licensed under either of 18 19 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) 20 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) 21 22at your option. 23 24### Contribution 25 26Unless you explicitly state otherwise, any contribution intentionally 27submitted for inclusion in the work by you, as defined in the Apache-2.0 28license, shall be dual licensed as above, without any additional terms or 29conditions. 30