forked from FutureSDR/seify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (43 loc) · 1.25 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
[package]
name = "seify"
version = "0.11.0"
description = "Shiny Samples from your Rusty SDR"
documentation = "https://docs.rs/seify/"
edition = "2021"
homepage = "https://www.futuresdr.org"
license = "Apache-2.0"
repository = "https://github.com/FutureSDR/seify"
[features]
default = ["soapy"]
rtlsdr = ["dep:seify-rtlsdr"]
aaronia = ["dep:aaronia-rtsa"]
aaronia_http = ["dep:ureq"]
soapy = ["dep:soapysdr"]
[[example]]
name = "rx_typed"
required-features = ["rtlsdr"]
[dependencies]
futures = "0.3"
log = "0.4"
nom = "7.1"
num-complex = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.6"
thiserror = "1.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
once_cell = "1.19"
seify-rtlsdr = { path = "crates/rtl-sdr-rs", version = "0.0.3", optional = true }
soapysdr = { version = "0.4", optional = true }
ureq = { version = "2.9", features = ["json"], optional = true }
[target.'cfg(any(target_os = "linux", target_os= "windows"))'.dependencies]
aaronia-rtsa = { version = "0.0.6", optional = true }
[dev-dependencies]
clap = { version = "4.5", features = ["derive"] }
ctrlc = "3.4"
env_logger = "0.11"
gnuplot = "0.0.42"
rustfft = "6.2"
vmcircbuffer = "0.0.10"
[package.metadata.docs.rs]
no-default-features = true