forked from FutureSDR/fsdr-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
74 lines (65 loc) · 1.91 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "fsdr-blocks"
version = "0.1.0"
edition = "2021"
authors = ["FutureSDR Contributors <[email protected]>"]
license = "Apache-2.0"
homepage = "https://www.futuresdr.org"
repository = "https://github.com/futuresdr/fsdr-blocks/"
description = "Building blocks for FutureSDR signal processing library for SDR and real-time DSP."
keywords = ["sdr", "radio", "dsp", "async", "acceleration"]
categories = ["asynchronous", "concurrency", "hardware-support", "science"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
".",
"crates/*",
# "examples/*",
]
[dependencies]
futuresdr = { git = "https://github.com/FutureSDR/FutureSDR", branch = "main" }
#futuresdr = { path = "../FutureSDR" }
async-channel = { version = "2.3.1", optional = true }
async-trait = "0.1.81"
crossbeam-channel = { version = "0.5.13", optional = true }
bimap = { version = "0.6.3", optional = true }
sigmf = { version = "0.1.0", path = "crates/sigmf" }
async-fs = "2.1.2"
serde = "1.0.204"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
tokio-test = "0.4.4"
rand = { version = "0.8.5" }
quickcheck_macros = "1"
serde_json = "1.0.120"
[features]
default = []
crossbeam = ["dep:crossbeam-channel"]
async-channel = ["dep:async-channel"]
cw = ["dep:bimap"]
[[bench]]
name = "crossbeam_sink"
path = "benches/channel/crossbeam_sink.rs"
harness = false
required-features = ["crossbeam"]
[[bench]]
name = "crossbeam_source"
path = "benches/channel/crossbeam_source.rs"
harness = false
required-features = ["crossbeam"]
[[bench]]
name = "cw_to_char"
path = "benches/cw/cw_to_char.rs"
harness = false
required-features = ["cw"]
[[bench]]
name = "bb_to_cw"
path = "benches/cw/baseband_to_cw.rs"
harness = false
required-features = ["cw"]
[[bench]]
name = "shared"
path = "benches/cw/shared.rs"
harness = false
required-features = ["cw"]