Skip to content

Commit

Permalink
Update dependencies and bump rustc to 1.73
Browse files Browse the repository at this point in the history
  • Loading branch information
caulagi committed Oct 6, 2023
1 parent 4b10a98 commit 7525589
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 77 deletions.
96 changes: 30 additions & 66 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions frontendservice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ path = "src/main.rs"
[dependencies]
axum = "0.6.20"
bytes = "1.5.0"
prost = "0.11.9"
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
tonic = { version = "0.9.2", features = ["tls"] }
prost = "0.12.1"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
tonic = { version = "0.10.2", features = ["tls"] }
tower-http = { version = "0.4.3", features = ["trace"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["default", "env-filter"]}
tracing-futures = "0.2.5"
tracing-attributes = "0.1.26"

[build-dependencies]
tonic-build = { version = "0.10.1" }
tonic-build = { version = "0.10.2" }
2 changes: 1 addition & 1 deletion frontendservice/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.71.1-slim-buster as build
FROM rust:1.73.0-slim-buster as build

ENV RUST_LOG frontend=info
ENV FORTUNE_SERVICE_HOSTNAME fortuneservice
Expand Down
10 changes: 5 additions & 5 deletions quotationservice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ path = "src/main.rs"

[dependencies]
bytes = "1.5.0"
prost = "0.11.9"
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
prost = "0.12.1"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
tokio-postgres = "0.7.10"
tonic = { version = "0.9.2", features = ["tls"] }
tonic = { version = "0.10.2", features = ["tls"] }
tower = "0.4.13"
tower-http = { version = "0.4.3", features = ["trace"] }
tower-http = { version = "0.4.4", features = ["trace"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["default", "env-filter"]}
tracing-futures = "0.2.5"
tracing-attributes = "0.1.26"

[build-dependencies]
tonic-build = { version = "0.10.1" }
tonic-build = { version = "0.10.2" }
2 changes: 1 addition & 1 deletion quotationservice/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.71.1-slim-buster as build
FROM rust:1.73.0-slim-buster as build

COPY . /code
WORKDIR /code
Expand Down

0 comments on commit 7525589

Please sign in to comment.