-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
126 lines (108 loc) · 2.73 KB
/
Cargo.toml
File metadata and controls
126 lines (108 loc) · 2.73 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[package]
name = "scanner"
version = "0.1.0"
edition = "2024"
license = "MIT"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] }
[profile.dev]
debug = true
[[bin]]
name = "scanner"
path = "bin/scanner.rs"
[[test]]
name = "scanning"
path = "tests/scanning.rs"
[[test]]
name = "window_processing"
path = "tests/window_processing.rs"
[[test]]
name = "resource_management"
path = "tests/resource_management.rs"
[[test]]
name = "shutdown"
path = "tests/shutdown.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "discovery"
path = "tests/discovery_test.rs"
[[test]]
name = "tui_regression"
path = "tests/tui_regression_test.rs"
[[bench]]
name = "peak_detection_bench"
harness = false
[features]
default = ["soapysdr", "http"]
http = ["reqwest"]
soapysdr = []
seify = []
rtlsdr = []
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
cpal = "0.15"
log = "0.4.27"
phf = { version = "0.11", features = ["macros"] }
rustfft = "6.4.0"
rustradio = { git = "https://github.com/ThomasHabets/rustradio.git", branch = "main", features = ["soapysdr", "fast-math", "simd"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
soapysdr = "0.4.2"
soapysdr-sys = "0.7.5"
stderrlog = "0.6.0"
thiserror = "1.0"
tracing = "0.1.40"
tracing-log = "0.2.0" # To bridge log macros to tracing
tracing-subscriber = { version = "0.3.17", features = ["json"] }
tokio = { version = "1", features = ["sync", "rt-multi-thread", "macros", "time"] }
tokio-util = { version = "0.7", features = ["rt"] }
dashmap = "6.1"
smartcore = "0.4.2"
num = { version = "0.4", features = ["serde"] }
hound = "3.5"
bincode = "1.3"
chrono = { version = "0.4", features = ["serde"] }
flate2 = "1.0"
h3ron = "0.17"
geo-types = "0.7"
maxminddb = "0.17"
reqwest = { version = "0.12", features = ["json", "blocking"], optional = true }
serde_yaml = "0.9"
dirs = "5.0"
tar = "0.4"
serde-ordered-collections = "2.0.0"
rand = "0.8.5"
ratatui = "0.28"
crossterm = "0.28"
signal-hook = "0.3"
ctrlc = "3.4"
thread-priority = "1.2"
libc = "0.2"
postcard = { version = "1.0", features = ["alloc"] }
indexmap = "2.12.0"
uuid = { version = "1.18.1", features = ["v4"] }
[target.'cfg(target_os = "linux")'.dependencies]
udev = "0.9"
nix = { version = "0.29", features = ["poll"] }
[dev-dependencies]
rand = "0.8.5"
glob = "0.3"
tempfile = "3.13"
criterion = { version = "0.5", features = ["html_reports"] }
proptest = "1.4"
proptest-state-machine = "0.4"
loom = "0.7"
[[bench]]
name = "serialization_bench"
path = "benches/ipc/serialization_bench.rs"
harness = false
[[bench]]
name = "latency_bench"
path = "benches/ipc/latency_bench.rs"
harness = false
[[bench]]
name = "throughput_bench"
path = "benches/ipc/throughput_bench.rs"
harness = false