-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (26 loc) · 897 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
[package]
name = "superdsp"
version = "0.4.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Standard
libm = { version = "0.2.8" }
spin = { version = "0.9.8" }
ndarray = { version = "0.16.1", default-features = false }
num = { version = "0.4", default-features = false }
futures = { version = "0.3.30", default-features = false }
#GUI
iced = { version = "0.12.1", features = ["canvas", "tokio", "image"], optional = true }
plotters-iced = { version = "0.10.0", optional = true }
plotters = { version = "0.3.6", optional = true }
# Bladerf
bladerf-bindings = { version = "0.0.13", optional = true }
[features]
default = ["std"]
std = []
gui = ["dep:iced","dep:plotters-iced","dep:plotters", "std"]
bladerf = ["dep:bladerf-bindings", "std"]
multithreading-std = ["std"]
[dev-dependencies]
criterion = "0.5.1"