forked from kevinmehall/rust-soapysdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 1.09 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
[workspace]
[package]
name = "soapysdr"
version = "0.1.0"
authors = ["Kevin Mehall <[email protected]>"]
categories = ["api-bindings", "hardware-support"]
keywords = ["sdr", "radio"]
description = """
Library wrapping SoapySDR, a hardware abstraction layer for many software defined radio devices,
including rtl-sdr, HackRF, USRP, LimeSDR, BladeRF, and Airspy.
"""
license = "BSL-1.0/Apache-2.0"
documentation = "https://kevinmehall.net/rustdoc/soapysdr/soapysdr/"
repository = "https://github.com/kevinmehall/rust-soapysdr"
readme = "README.md"
[dependencies]
soapysdr-sys = { version = "0.7", path = "./soapysdr-sys" }
libc = "0.2"
num-complex = "0.2"
log = { version = "0.4", optional = true }
# Dependencies used only by binaries
getopts = { version = "0.2", optional = true }
signalbool = { version = "0.2", optional = true }
[features]
default = ["log","binaries"]
binaries = ["getopts", "signalbool"]
[[bin]]
name = "soapy-sdr-info"
path = "src/bin/soapy-sdr-info.rs"
required-features = ["binaries"]
[[bin]]
name = "soapy-sdr-stream"
path = "src/bin/soapy-sdr-stream.rs"
required-features = ["binaries"]