Skip to content

Commit 59475ec

Browse files
committed
Update dependencies and Rust Docker image
1 parent 896039a commit 59475ec

File tree

10 files changed

+1023
-718
lines changed

10 files changed

+1023
-718
lines changed

Cargo.lock

Lines changed: 977 additions & 672 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auth-service/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ edition = "2021"
66

77
[dependencies]
88
common-utils = { path = "../common-utils" }
9-
async-graphql = "6.0.0"
10-
async-graphql-actix-web = "6.0.0"
11-
actix-web = "4.3.1"
12-
actix-rt = "2.8.0"
13-
serde = { version = "1.0.178", features = ["derive"] }
14-
diesel = { version = "2.1.0", features = ["postgres", "r2d2"] }
9+
async-graphql = "6.0.7"
10+
async-graphql-actix-web = "6.0.7"
11+
actix-web = "4.4.0"
12+
actix-rt = "2.9.0"
13+
serde = { version = "1.0.188", features = ["derive"] }
14+
diesel = { version = "2.1.1", features = ["postgres", "r2d2"] }
1515
diesel_migrations = "2.1.0"
1616
dotenv = "0.15.0"
1717
jsonwebtoken = "8.3.0"
18-
argon2 = "0.5.1"
19-
chrono = "0.4.26"
18+
argon2 = "0.5.2"
19+
chrono = "0.4.31"
2020
lazy_static = "1.4.0"
2121
strum = "0.25.0"
22-
strum_macros = "0.25.1"
22+
strum_macros = "0.25.2"
2323

2424
[dev-dependencies]
25-
serde_json = "1.0.104"
25+
serde_json = "1.0.107"
2626
jsonpath_lib = "0.3.0"
27-
base64 = "0.21.2"
27+
base64 = "0.21.4"
2828
testcontainers = "0.14.0"

auth-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.71.0 as builder
1+
FROM rust:1.72.1 as builder
22

33
ENV CARGO_TERM_COLOR always
44
RUN apt-get update && apt-get install -y libpq-dev

common-utils/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Roman Kudryashov <[email protected]>"]
55
edition = "2021"
66

77
[dependencies]
8-
actix-web = "4.3.1"
9-
serde = { version = "1.0.178", features = ["derive"] }
8+
actix-web = "4.4.0"
9+
serde = { version = "1.0.188", features = ["derive"] }
1010
strum = "0.25.0"
11-
strum_macros = "0.25.1"
11+
strum_macros = "0.25.2"

gateway/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ edition = "2021"
66

77
[dependencies]
88
common-utils = { path = "../common-utils" }
9-
apollo-router = "1.26.0"
10-
anyhow = "1.0.72"
11-
async-trait = "0.1.72"
9+
apollo-router = "1.30.1"
10+
anyhow = "1.0.75"
11+
async-trait = "0.1.73"
1212
futures = "0.3.28"
13-
schemars = "0.8.12"
13+
schemars = "0.8.15"
1414
jsonwebtoken = "8.3.0"
15-
serde = "1.0.178"
16-
serde_json = "1.0.104"
17-
tokio = { version = "1.29.1", features = ["full"] }
15+
serde = "1.0.188"
16+
serde_json = "1.0.107"
17+
tokio = { version = "1.32.0", features = ["full"] }
1818
tower = { version = "0.4.13", features = ["full"] }
1919
tracing = "0.1.37"
2020
http = "0.2.9"

gateway/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM rust:1.71.0 as builder
1+
FROM rust:1.72.1 as builder
22

33
ENV CARGO_TERM_COLOR always
4-
RUN apt-get update && apt-get install -y protobuf-compiler
4+
RUN apt-get update && apt-get install -y protobuf-compiler cmake
55

66
WORKDIR /usr/src/docker-build
77
# create empty project for caching dependencies

planets-service/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@ edition = "2021"
66

77
[dependencies]
88
common-utils = { path = "../common-utils" }
9-
async-graphql = { version = "6.0.0", features = ["dataloader"] }
10-
async-graphql-actix-web = "6.0.0"
11-
actix-web = "4.3.1"
12-
actix-rt = "2.8.0"
9+
async-graphql = { version = "6.0.7", features = ["dataloader"] }
10+
async-graphql-actix-web = "6.0.7"
11+
actix-web = "4.4.0"
12+
actix-rt = "2.9.0"
1313
actix-web-actors = "4.2.0"
1414
futures = "0.3.28"
15-
async-trait = "0.1.72"
16-
bigdecimal = { version = "0.3.1", features = ["serde"] }
17-
serde = { version = "1.0.178", features = ["derive"] }
18-
serde_json = "1.0.104"
19-
diesel = { version = "2.1.0", features = ["postgres", "r2d2", "numeric"] }
15+
async-trait = "0.1.73"
16+
bigdecimal = { version = "0.4.1", features = ["serde"] }
17+
serde = { version = "1.0.188", features = ["derive"] }
18+
serde_json = "1.0.107"
19+
diesel = { version = "2.1.1", features = ["postgres", "r2d2", "numeric"] }
2020
diesel_migrations = "2.1.0"
2121
dotenv = "0.15.0"
2222
strum = "0.25.0"
23-
strum_macros = "0.25.1"
24-
rdkafka = { version = "0.33.2", features = ["cmake-build"] }
23+
strum_macros = "0.25.2"
24+
rdkafka = { version = "0.34.0", features = ["cmake-build"] }
2525
async-stream = "0.3.5"
2626
lazy_static = "1.4.0"
2727

planets-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.71.0 as builder
1+
FROM rust:1.72.1 as builder
22

33
ENV CARGO_TERM_COLOR always
44
RUN apt-get update && apt-get install -y libpq-dev cmake

satellites-service/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ authors = ["Roman Kudryashov <[email protected]>"]
55
edition = "2021"
66

77
[dependencies]
8-
async-graphql = { version = "6.0.0", features = ["chrono"] }
9-
async-graphql-actix-web = "6.0.0"
10-
actix-web = "4.3.1"
11-
actix-rt = "2.8.0"
12-
serde = { version = "1.0.178", features = ["derive"] }
13-
diesel = { version = "2.1.0", features = ["postgres", "r2d2", "chrono"] }
8+
async-graphql = { version = "6.0.7", features = ["chrono"] }
9+
async-graphql-actix-web = "6.0.7"
10+
actix-web = "4.4.0"
11+
actix-rt = "2.9.0"
12+
serde = { version = "1.0.188", features = ["derive"] }
13+
diesel = { version = "2.1.1", features = ["postgres", "r2d2", "chrono"] }
1414
diesel_migrations = "2.1.0"
15-
chrono = { version = "0.4.26", features = ["serde"] }
15+
chrono = { version = "0.4.31", features = ["serde"] }
1616
dotenv = "0.15.0"
1717
strum = "0.25.0"
18-
strum_macros = "0.25.1"
18+
strum_macros = "0.25.2"
1919

2020
[dev-dependencies]
21-
serde_json = "1.0.104"
21+
serde_json = "1.0.107"
2222
jsonpath_lib = "0.3.0"
2323
testcontainers = "0.14.0"

satellites-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.71.0 as builder
1+
FROM rust:1.72.1 as builder
22

33
ENV CARGO_TERM_COLOR always
44
RUN apt-get update && apt-get install -y libpq-dev

0 commit comments

Comments
 (0)