-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 1.41 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
40
41
42
43
44
[package]
name = "sdre-rust-adsb-parser"
version = "0.1.0-alpha.3"
edition = "2021"
authors = ["Fred Clausen"]
documentation = "https://github.com/sdr-enthusiasts/sdre-rust-adsb-parser"
homepage = "https://github.com/sdr-enthusiasts/sdre-rust-adsb-parser"
repository = "https://github.com/sdre-enthusiasts/sdre-rust-adsb-parser"
readme = "README.md"
keywords = ["sdr", "adsb", "parser", "beast", "raw", "json", "readsb", "rtlsdr"]
license = "MIT"
rust-version = "1.75.0"
description = "A Rust library for parsing ADS-B messages from a Beast, JSON or raw data stream."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hex = { version = "0.4.3", optional = true }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
log = "0.4.25"
tokio = { version = "1.43.0", features = ["full"] }
sdre-rust-logging = "0.3.10"
deku = { version = "0.18.1", optional = true }
custom_error = "1.9.2"
libm = { version = "0.2.11", optional = true }
radix_fmt = "1.0.0"
derive_builder = "0.20.2"
chrono = "0.4.38"
easy-cast = "0.5.3"
anyhow = "1.0.95"
[dev-dependencies]
generic-async-http-client = { version = "0.6.2", features = ["use_hyper"] }
sdre-stubborn-io = "0.6.0"
rocket = { version = "0.5.1", features = ["json"] }
[features]
default = ["json", "raw", "beast"]
json = []
raw = ["dep:deku", "dep:hex", "dep:libm"]
beast = ["raw"]
[profile.release]
lto = true