fft_lab/lib.rs
1// Copyright © 2022 Trevor Spiteri
2
3// This library is free software: you can redistribute it and/or
4// modify it under the terms of either
5//
6// * the Apache License, Version 2.0 or
7// * the MIT License
8//
9// at your option.
10//
11// You should have recieved copies of the Apache License and the MIT
12// License along with the library. If not, see
13// <https://www.apache.org/licenses/LICENSE-2.0> and
14// <https://opensource.org/licenses/MIT>
15
16/*!
17# FFT laboratory
18
19Coming soon.
20
21## Using the *fft-lab* crate
22
23The *fft-lab* crate is available on [crates.io][*fft-lab* crate]. To use it in
24your crate, add it as a dependency inside [*Cargo.toml*]:
25
26```toml
27[dependencies]
28fft-lab = "0.0.0"
29```
30
31The *fft-lab* crate requires rustc version 1.64.0 or later.
32
33## License
34
35This crate is free software: you can redistribute it and/or modify it under the
36terms of either
37
38 * the [Apache License, Version 2.0][LICENSE-APACHE] or
39 * the [MIT License][LICENSE-MIT]
40
41at your option.
42
43### Contribution
44
45Unless you explicitly state otherwise, any contribution intentionally submitted
46for inclusion in the work by you, as defined in the Apache License, Version 2.0,
47shall be dual licensed as above, without any additional terms or conditions.
48
49[*Cargo.toml*]: https://doc.rust-lang.org/cargo/guide/dependencies.html
50[*fft-lab* crate]: https://crates.io/crates/fft-lab
51[LICENSE-APACHE]: https://www.apache.org/licenses/LICENSE-2.0
52[LICENSE-MIT]: https://opensource.org/licenses/MIT
53
54*/