-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
39 lines (36 loc) · 1.44 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
[workspace]
members = [
"rust/bin/acars_router",
"rust/libraries/acars_config",
"rust/libraries/acars_connection_manager",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "1.3.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.66.1"
[workspace.dependencies]
log = "0.4.25"
tokio = { version = "1.43.0", features = ["full", "tracing"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
sdre-rust-logging = "0.3.9"
clap = { version = "4.5.26", features = ["derive", "env"] }
sdre-stubborn-io = "0.5.15"
tokio-util = { version = "0.7.13", features = ["full"] }
tokio-stream = "0.1.17"
futures = "0.3.31"
async-trait = "0.1.85"
zmq = "0.10.0"
tmq = "0.5.0"
#acars_vdlm2_parser = { git = "https://github.com/jcdeimos/acars_vdlm2_parser", version = "0.2.1" }
#acars_vdlm2_parser = { git = "https://github.com/fredclausen/acars_vdlm2_parser", branch = "hfdl-and-dependency-updates" }
acars_vdlm2_parser = { git = "https://github.com/rpatel3001/acars_vdlm2_parser", branch = "add_imsl_irdm" }
acars_config = { path = "../acars_config" }