Skip to content

Commit

Permalink
Update UBI, rust and some crate versions (#9)
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Hill <[email protected]>
  • Loading branch information
njhill authored Jun 18, 2024
1 parent ae53718 commit d5960ed
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
48 changes: 24 additions & 24 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## Global Args #################################################################
ARG BASE_UBI_MINIMAL_IMAGE_TAG=9.4-949.1714662671
ARG PROTOC_VERSION=26.0
ARG BASE_UBI_MINIMAL_IMAGE_TAG=9.4-1134
ARG PROTOC_VERSION=27.1


## Rust builder ################################################################
# Specific debian version so that compatible glibc version is used
FROM rust:1.77-bullseye as rust-builder
FROM rust:1.79-bullseye as rust-builder
ARG PROTOC_VERSION

ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
Expand Down
14 changes: 7 additions & 7 deletions fmaas-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ path = "src/main.rs"

[dependencies]
axum = "0.6.20"
anyhow = "^1.0.81"
clap = { version = "^4.5.3", features = ["derive", "env"] }
anyhow = "^1.0.86"
clap = { version = "^4.5.7", features = ["derive", "env"] }
futures = "^0.3.30"
tonic = { version = "=0.11.0", features = ["tls"] }
ginepro = "=0.7.1"
tokio = { version = "^1.36.0", features = ["rt", "rt-multi-thread", "parking_lot", "signal", "sync", "fs"] }
ginepro = "=0.7.2"
tokio = { version = "^1.38.0", features = ["rt", "rt-multi-thread", "parking_lot", "signal", "sync", "fs"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
prost = "^0.12.3"
prost-types = "^0.12.3"
prost = "^0.12.6"
prost-types = "^0.12.6"
serde_yaml = "^0.9.33"
serde = { version = "^1.0.197", features = ["derive"] }
serde = { version = "^1.0.203", features = ["derive"] }
opentelemetry = { version = "0.22", features = ["trace"] }
opentelemetry_sdk = {version = "0.22", features = ["rt-tokio"]}
opentelemetry-otlp = "0.15.0"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.77"
channel = "1.79"
components = ["rustfmt", "clippy"]

0 comments on commit d5960ed

Please sign in to comment.