-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
37 lines (34 loc) · 888 Bytes
/
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
[package]
name = "gnss-sdr-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2.144"
plotpy = "0.4.0"
spectrum-analyzer = "1.4.0"
rustfft = "6.1.0"
realfft = "3.3.0"
signal-hook = "0.3.15"
quantiles = "0.7.1"
binrw = "0.13.2"
puruspe = "0.2.0"
rayon = "1.7.0"
itertools = "0.12.0"
once_cell = "1.18.0"
tokio = { version = "1.29.1", features = ["full"] }
async-ffi = {version = "0.5.0", features = ["macros"]}
ctrlc = {version="3.4.0", features = ["termination"]}
byteorder = "1.3.3"
slice_ring_buf = "0.2.0"
num = "0.4.1"
reqwest = { version = "0.11", features = ["blocking", "json"] }
scraper = "0.18.1"
chrono = "0.4.31"
flate2 = "1.0"
piston_window = "0.131.0"
plotters = "0.3.5"
plotters-bitmap = "0.3.3"
crossbeam-channel = "0.5"
[build-dependencies]
bindgen = "0.69.1"