Skip to content

Commit

Permalink
updates to cargo dep structure
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Jan 15, 2025
1 parent 9d30519 commit c87a4ef
Show file tree
Hide file tree
Showing 5 changed files with 106 additions and 76 deletions.
123 changes: 67 additions & 56 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 20 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ resolver = "2"

[workspace.package]
edition = "2021"
version = "1.3.0"
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"
Expand All @@ -18,3 +18,22 @@ 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" }
Loading

0 comments on commit c87a4ef

Please sign in to comment.