Skip to content

Commit

Permalink
Update dependencies and Rust Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
rkudryashov committed Jul 4, 2023
1 parent b5d0262 commit ba8a509
Show file tree
Hide file tree
Showing 10 changed files with 471 additions and 407 deletions.
810 changes: 437 additions & 373 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions auth-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ edition = "2021"

[dependencies]
common-utils = { path = "../common-utils" }
async-graphql = "5.0.9"
async-graphql-actix-web = "5.0.9"
async-graphql = "5.0.10"
async-graphql-actix-web = "5.0.10"
actix-web = "4.3.1"
actix-rt = "2.8.0"
serde = { version = "1.0.163", features = ["derive"] }
serde = { version = "1.0.166", features = ["derive"] }
diesel = { version = "2.1.0", features = ["postgres", "r2d2"] }
diesel_migrations = "2.1.0"
dotenv = "0.15.0"
jsonwebtoken = "8.3.0"
argon2 = "0.5.0"
chrono = "0.4.24"
chrono = "0.4.26"
lazy_static = "1.4.0"
strum = "0.24.1"
strum_macros = "0.24.3"
strum = "0.25.0"
strum_macros = "0.25.1"

[dev-dependencies]
serde_json = "1.0.96"
serde_json = "1.0.99"
jsonpath_lib = "0.3.0"
base64 = "0.21.2"
testcontainers = "0.14.0"
2 changes: 1 addition & 1 deletion auth-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.69.0 as builder
FROM rust:1.70.0 as builder

ENV CARGO_TERM_COLOR always
RUN apt-get update && apt-get install -y libpq-dev
Expand Down
6 changes: 3 additions & 3 deletions common-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"

[dependencies]
actix-web = "4.3.1"
serde = { version = "1.0.163", features = ["derive"] }
strum = "0.24.1"
strum_macros = "0.24.3"
serde = { version = "1.0.166", features = ["derive"] }
strum = "0.25.0"
strum_macros = "0.25.1"
10 changes: 5 additions & 5 deletions gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ edition = "2021"

[dependencies]
common-utils = { path = "../common-utils" }
apollo-router = "1.19.1"
apollo-router = "1.22.0"
anyhow = "1.0.71"
async-trait = "0.1.68"
async-trait = "0.1.69"
futures = "0.3.28"
schemars = "0.8.12"
jsonwebtoken = "8.3.0"
serde = "1.0.163"
serde_json = "1.0.96"
tokio = { version = "1.28.1", features = ["full"] }
serde = "1.0.166"
serde_json = "1.0.99"
tokio = { version = "1.29.1", features = ["full"] }
tower = { version = "0.4.13", features = ["full"] }
tracing = "0.1.37"
http = "0.2.9"
Expand Down
2 changes: 1 addition & 1 deletion gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.69.0 as builder
FROM rust:1.70.0 as builder

ENV CARGO_TERM_COLOR always
RUN apt-get update && apt-get install -y protobuf-compiler
Expand Down
16 changes: 8 additions & 8 deletions planets-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ edition = "2021"

[dependencies]
common-utils = { path = "../common-utils" }
async-graphql = { version = "5.0.9", features = ["dataloader"] }
async-graphql-actix-web = "5.0.9"
async-graphql = { version = "5.0.10", features = ["dataloader"] }
async-graphql-actix-web = "5.0.10"
actix-web = "4.3.1"
actix-rt = "2.8.0"
actix-web-actors = "4.2.0"
futures = "0.3.28"
async-trait = "0.1.68"
async-trait = "0.1.69"
bigdecimal = { version = "0.3.1", features = ["serde"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
serde = { version = "1.0.166", features = ["derive"] }
serde_json = "1.0.99"
diesel = { version = "2.1.0", features = ["postgres", "r2d2", "numeric"] }
diesel_migrations = "2.1.0"
dotenv = "0.15.0"
strum = "0.24.1"
strum_macros = "0.24.3"
rdkafka = { version = "0.31.0", features = ["cmake-build"] }
strum = "0.25.0"
strum_macros = "0.25.1"
rdkafka = { version = "0.33.0", features = ["cmake-build"] }
async-stream = "0.3.5"
lazy_static = "1.4.0"

Expand Down
2 changes: 1 addition & 1 deletion planets-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.69.0 as builder
FROM rust:1.70.0 as builder

ENV CARGO_TERM_COLOR always
RUN apt-get update && apt-get install -y libpq-dev cmake
Expand Down
14 changes: 7 additions & 7 deletions satellites-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ authors = ["Roman Kudryashov <rskudryashov@gmail.com>"]
edition = "2021"

[dependencies]
async-graphql = { version = "5.0.9", features = ["chrono"] }
async-graphql-actix-web = "5.0.9"
async-graphql = { version = "5.0.10", features = ["chrono"] }
async-graphql-actix-web = "5.0.10"
actix-web = "4.3.1"
actix-rt = "2.8.0"
serde = { version = "1.0.163", features = ["derive"] }
serde = { version = "1.0.166", features = ["derive"] }
diesel = { version = "2.1.0", features = ["postgres", "r2d2", "chrono"] }
diesel_migrations = "2.1.0"
chrono = { version = "0.4.24", features = ["serde"] }
chrono = { version = "0.4.26", features = ["serde"] }
dotenv = "0.15.0"
strum = "0.24.1"
strum_macros = "0.24.3"
strum = "0.25.0"
strum_macros = "0.25.1"

[dev-dependencies]
serde_json = "1.0.96"
serde_json = "1.0.99"
jsonpath_lib = "0.3.0"
testcontainers = "0.14.0"
2 changes: 1 addition & 1 deletion satellites-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.69.0 as builder
FROM rust:1.70.0 as builder

ENV CARGO_TERM_COLOR always
RUN apt-get update && apt-get install -y libpq-dev
Expand Down

0 comments on commit ba8a509

Please sign in to comment.