-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 818 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
[package]
name = "fishfinder"
version = "0.1.0"
authors = ["Billy Lindeman <billylindeman@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
adsb = { git = "https://github.com/asmarques/adsb"}
crossbeam = "0.8.0"
crossbeam-channel = "0.5.1"
crossbeam-utils = "0.8.3"
failure = "0.1.8"
hex = "0.4.3"
log = "0.4.14"
pretty_env_logger = "0.4.0"
ringbuf = "0.2.3"
rtlsdr_mt = "2.1.0"
structopt = "0.3.21"
tokio = { version = "1.4.0", features = ["full", "tracing"] }
tokio-util = { version = "0.6.6", features = ["full"] }
tokio-stream = { version = "0.1" }
pin-utils = "0.1.0"
bytes = "1.0.1"
[[bin]]
name = "fishfinder"
path = "./bin/fishfinder.rs"
[[bin]]
name = "foreflight-discover"
path = "./bin/foreflight-discover.rs"