-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 803 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 803 Bytes
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
[workspace]
[package]
name = "soapysdr"
version = "0.5.0"
edition = "2024"
rust-version = "1.85"
authors = ["Kevin Mehall <km@kevinmehall.net>"]
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 OR Apache-2.0"
repository = "https://github.com/kevinmehall/rust-soapysdr"
readme = "README.md"
exclude = ["shell.nix", ".github"]
[dependencies]
soapysdr-sys = { version = "0.8.0", path = "./soapysdr-sys" }
num-complex = "0.4"
log = { version = "0.4", optional = true }
[dev-dependencies]
byteorder = "1.1"
getopts = "0.2.4"
signalbool = "0.2.0"
[features]
default = ["log"]