-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (56 loc) · 2.24 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (56 loc) · 2.24 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
[workspace]
members = [
"rust/bin/acars_router",
"rust/libraries/acars_config",
"rust/libraries/acars_connection_manager",
]
resolver = "2"
[workspace.package]
edition = "2024"
version = "0.2.1"
authors = ["Fred Clausen", "Mike Nye", "Alex Austin"]
description = "ACARS Router: A Utility to ingest ACARS/VDLM2/HFDL/IMSL/IRDM from many sources, process, and feed out to many consumers."
documentation = "https://github.com/sdr-enthusiasts/acars_router"
homepage = "https://github.com/sdr-enthusiasts/acars_router"
repository = "https://github.com/sdr-enthusiasts/acars_router"
readme = "README.md"
license = "MIT"
rust-version = "1.85"
keywords = ["acars", "vdlm2", "hfdl", "aviation", "sdr"]
categories = ["command-line-utilities", "network-programming"]
[workspace.dependencies]
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
tokio = { version = "1.52.2", features = ["full", "tracing"] }
serde_json = "1.0.150"
clap = { version = "4.6.1", features = ["derive", "env"] }
sdre-stubborn-io = "0.7.2"
socket2 = "0.6.4"
tokio-util = { version = "0.7.18", features = ["full"] }
tokio-stream = "0.1.18"
futures = "0.3.32"
tmq = "0.5.0"
acars_vdlm2_parser = { git = "https://github.com/jcdeimos/acars_vdlm2_parser", version = "0.4.0" }
hickory-resolver = "0.26.1"
[workspace.lints.rust]
unsafe_code = "forbid"
rust_2018_idioms = { level = "warn", priority = -1 }
unreachable_pub = "warn"
# missing_docs deferred until a dedicated docs pass; the existing codebase has
# essentially no rustdoc and surfacing hundreds of warnings here would drown
# the signal from the lints below.
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
# explicit opt-outs that are noisy in this codebase
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
# transitive deps (tokio, mio, zmq-sys, etc.) pull in multiple versions
multiple_crate_versions = "allow"
# `too_many_lines` is allowed at the workspace level, but only on a
# case-by-case basis where splitting the function would harm readability
# (e.g. linear top-level orchestration in `main`). All other lints must
# be fixed, not silenced.
too_many_lines = "allow"