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 Sep 24, 2023
1 parent 896039a commit 59475ec
Show file tree
Hide file tree
Showing 10 changed files with 1,023 additions and 718 deletions.
1,649 changes: 977 additions & 672 deletions Cargo.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 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 = "6.0.0"
async-graphql-actix-web = "6.0.0"
actix-web = "4.3.1"
actix-rt = "2.8.0"
serde = { version = "1.0.178", features = ["derive"] }
diesel = { version = "2.1.0", features = ["postgres", "r2d2"] }
async-graphql = "6.0.7"
async-graphql-actix-web = "6.0.7"
actix-web = "4.4.0"
actix-rt = "2.9.0"
serde = { version = "1.0.188", features = ["derive"] }
diesel = { version = "2.1.1", features = ["postgres", "r2d2"] }
diesel_migrations = "2.1.0"
dotenv = "0.15.0"
jsonwebtoken = "8.3.0"
argon2 = "0.5.1"
chrono = "0.4.26"
argon2 = "0.5.2"
chrono = "0.4.31"
lazy_static = "1.4.0"
strum = "0.25.0"
strum_macros = "0.25.1"
strum_macros = "0.25.2"

[dev-dependencies]
serde_json = "1.0.104"
serde_json = "1.0.107"
jsonpath_lib = "0.3.0"
base64 = "0.21.2"
base64 = "0.21.4"
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.71.0 as builder
FROM rust:1.72.1 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 @@ -5,7 +5,7 @@ authors = ["Roman Kudryashov <rskudryashov@gmail.com>"]
edition = "2021"

[dependencies]
actix-web = "4.3.1"
serde = { version = "1.0.178", features = ["derive"] }
actix-web = "4.4.0"
serde = { version = "1.0.188", features = ["derive"] }
strum = "0.25.0"
strum_macros = "0.25.1"
strum_macros = "0.25.2"
14 changes: 7 additions & 7 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.26.0"
anyhow = "1.0.72"
async-trait = "0.1.72"
apollo-router = "1.30.1"
anyhow = "1.0.75"
async-trait = "0.1.73"
futures = "0.3.28"
schemars = "0.8.12"
schemars = "0.8.15"
jsonwebtoken = "8.3.0"
serde = "1.0.178"
serde_json = "1.0.104"
tokio = { version = "1.29.1", features = ["full"] }
serde = "1.0.188"
serde_json = "1.0.107"
tokio = { version = "1.32.0", features = ["full"] }
tower = { version = "0.4.13", features = ["full"] }
tracing = "0.1.37"
http = "0.2.9"
Expand Down
4 changes: 2 additions & 2 deletions gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM rust:1.71.0 as builder
FROM rust:1.72.1 as builder

ENV CARGO_TERM_COLOR always
RUN apt-get update && apt-get install -y protobuf-compiler
RUN apt-get update && apt-get install -y protobuf-compiler cmake

WORKDIR /usr/src/docker-build
# create empty project for caching dependencies
Expand Down
22 changes: 11 additions & 11 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 = "6.0.0", features = ["dataloader"] }
async-graphql-actix-web = "6.0.0"
actix-web = "4.3.1"
actix-rt = "2.8.0"
async-graphql = { version = "6.0.7", features = ["dataloader"] }
async-graphql-actix-web = "6.0.7"
actix-web = "4.4.0"
actix-rt = "2.9.0"
actix-web-actors = "4.2.0"
futures = "0.3.28"
async-trait = "0.1.72"
bigdecimal = { version = "0.3.1", features = ["serde"] }
serde = { version = "1.0.178", features = ["derive"] }
serde_json = "1.0.104"
diesel = { version = "2.1.0", features = ["postgres", "r2d2", "numeric"] }
async-trait = "0.1.73"
bigdecimal = { version = "0.4.1", features = ["serde"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
diesel = { version = "2.1.1", features = ["postgres", "r2d2", "numeric"] }
diesel_migrations = "2.1.0"
dotenv = "0.15.0"
strum = "0.25.0"
strum_macros = "0.25.1"
rdkafka = { version = "0.33.2", features = ["cmake-build"] }
strum_macros = "0.25.2"
rdkafka = { version = "0.34.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.71.0 as builder
FROM rust:1.72.1 as builder

ENV CARGO_TERM_COLOR always
RUN apt-get update && apt-get install -y libpq-dev cmake
Expand Down
18 changes: 9 additions & 9 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 = "6.0.0", features = ["chrono"] }
async-graphql-actix-web = "6.0.0"
actix-web = "4.3.1"
actix-rt = "2.8.0"
serde = { version = "1.0.178", features = ["derive"] }
diesel = { version = "2.1.0", features = ["postgres", "r2d2", "chrono"] }
async-graphql = { version = "6.0.7", features = ["chrono"] }
async-graphql-actix-web = "6.0.7"
actix-web = "4.4.0"
actix-rt = "2.9.0"
serde = { version = "1.0.188", features = ["derive"] }
diesel = { version = "2.1.1", features = ["postgres", "r2d2", "chrono"] }
diesel_migrations = "2.1.0"
chrono = { version = "0.4.26", features = ["serde"] }
chrono = { version = "0.4.31", features = ["serde"] }
dotenv = "0.15.0"
strum = "0.25.0"
strum_macros = "0.25.1"
strum_macros = "0.25.2"

[dev-dependencies]
serde_json = "1.0.104"
serde_json = "1.0.107"
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.71.0 as builder
FROM rust:1.72.1 as builder

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

0 comments on commit 59475ec

Please sign in to comment.