-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
37 lines (33 loc) · 973 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
[package]
name = "idsp"
version = "0.17.0"
resolver = "2"
edition = "2021"
authors = ["Robert Jördens <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "DSP algorithms for embedded, mostly integer math"
homepage = "https://github.com/quartiq/idsp"
repository = "https://github.com/quartiq/idsp.git"
documentation = "https://docs.rs/idsp"
[dependencies]
serde = { version = "1.0", features = ["derive"], default-features = false }
num-complex = { version = "0.4.0", features = [
"serde",
], default-features = false }
num-traits = { version = "0.2.14", features = [
"libm",
], default-features = false }
thiserror = { version = "2.0.9", default-features = false }
miniconf = "0.18.0"
strum = { version = "0.26.3", default-features = false, features = ["derive"] }
[dev-dependencies]
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
rand = "0.8"
rustfft = "6.1.0"
# futuredsp = "0.0.6"
# sdr = "0.7.0"
[features]
std = []
[profile.release]
debug = 1