Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Jan 7, 2024
1 parent d7a69e1 commit c92c55a
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 45 deletions.
68 changes: 34 additions & 34 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Dockerfile.build_binary
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.74.1-bullseye as builder
FROM rust:1.75.0 as builder
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
WORKDIR /tmp/acars_router
# hadolint ignore=DL3008,DL3003,SC1091,DL3009
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.local
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.74.1-bullseye as builder
FROM rust:1.75.0 as builder
WORKDIR /tmp/acars_router
# hadolint ignore=DL3008,DL3003,SC1091
RUN set -x && \
Expand Down
8 changes: 4 additions & 4 deletions rust/bin/acars_router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ rust-version.workspace = true

[dependencies]
log = "0.4.20"
tokio = { version = "1.35.0", features = ["full", "tracing"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.35.1", features = ["full", "tracing"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
acars_config = { path = "../../libraries/acars_config" }
sdre-rust-logging = "0.2.0"
sdre-rust-logging = "0.2.1"
acars_connection_manager = { path = "../../libraries/acars_connection_manager" }
4 changes: 2 additions & 2 deletions rust/libraries/acars_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.4.12", features = ["derive", "env"] }
clap = { version = "4.4.13", features = ["derive", "env"] }
log = "0.4.20"
sdre-rust-logging = "0.2.0"
sdre-rust-logging = "0.2.1"
5 changes: 2 additions & 3 deletions rust/libraries/acars_connection_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@ edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sdre-stubborn-io = "0.5.0"
sdre-stubborn-io = "0.5.1"
#sdre-stubborn-io = "0.4.4"
log = "0.4.20"
tokio = { version = "1.35.1", features = ["full", "tracing"] }
tokio-util = { version = "0.7.10", features = ["full"] }
tokio-stream = "0.1.14"
futures = "0.3.30"
async-trait = "0.1.75"
async-trait = "0.1.77"
zmq = "0.10.0"
tmq = "0.4.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 = { path = "../../../../../fred/acars_vdlm2_parser" }
acars_config = { path = "../acars_config" }

0 comments on commit c92c55a

Please sign in to comment.