-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
43 lines (36 loc) · 1014 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "phastft"
version = "0.2.1"
edition = "2021"
authors = ["Saveliy Yusufov", "Shnatsel"]
license = "MIT OR Apache-2.0"
description = "A high-performance, quantum-inspired, implementation of FFT in pure Rust"
repository = "https://github.com/QuState/PhastFT"
keywords = ["quantum", "fft", "discrete", "fourier", "transform"]
categories = ["algorithms", "compression", "science"]
exclude = ["assets", "scripts", "benches"]
[dependencies]
num-traits = "0.2.18"
multiversion = "0.7"
num-complex = { version = "0.4.6", features = ["bytemuck"], optional = true }
bytemuck = { version = "1.16.0", optional = true }
[features]
default = []
complex-nums = ["dep:num-complex", "dep:bytemuck"]
[dev-dependencies]
criterion = "0.5.1"
fftw = "0.8.0"
rand = "0.8.5"
utilities = { path = "utilities" }
[[bench]]
name = "bench"
harness = false
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
[profile.profiling]
inherits = "release"
debug = true
[package.metadata.docs.rs]
all-features = true