Skip to content

Commit 6739ea9

Browse files
chore(deps): update all non-major dependencies
1 parent c5da43d commit 6739ea9

File tree

9 files changed

+61
-61
lines changed

9 files changed

+61
-61
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
services:
2020
postgres:
21-
image: postgres:16.1-alpine
21+
image: postgres:16.8-alpine
2222
env:
2323
POSTGRES_USER: postgres
2424
POSTGRES_PASSWORD: root

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ edition = "2021"
2727

2828
[dependencies]
2929
server = { path = "crates/server" }
30-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread", "fs"] }
30+
tokio = { version = "1.44.1", features = ["macros", "rt-multi-thread", "fs"] }
3131

3232
[target.'cfg(not(target_env = "msvc"))'.dependencies]
33-
jemallocator = "0.5.0"
33+
jemallocator = "0.5.4"

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN cargo build --target x86_64-unknown-linux-musl --release
3131
## Build CA Certificates
3232
####################################################################################################
3333

34-
FROM alpine:3.17.2 as ca-certificates
34+
FROM alpine:3.21.3 as ca-certificates
3535
RUN apk add -U --no-cache ca-certificates
3636

3737
####################################################################################################

Dockerfile.dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.68 AS builder
1+
FROM rust:1.85 AS builder
22

33
RUN apt update && apt install -y nodejs npm
44
RUN npm i -g npm bunyan

crates/entity/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ name = "entity"
1010
path = "src/lib.rs"
1111

1212
[dependencies]
13-
serde = { version = "1.0.158", features = ["derive"] }
14-
serde_json = "1.0.94"
15-
chrono = { version = "0.4.24", features = ["serde"] }
16-
sea-orm = { version = "0.11.1", features = ["postgres-array"] }
17-
sea-query = { version = "0.28.3", features = ["postgres-array"] }
18-
getset = "0.1.2"
13+
serde = { version = "1.0.219", features = ["derive"] }
14+
serde_json = "1.0.140"
15+
chrono = { version = "0.4.40", features = ["serde"] }
16+
sea-orm = { version = "0.12.15", features = ["postgres-array"] }
17+
sea-query = { version = "0.32.3", features = ["postgres-array"] }
18+
getset = "0.1.5"

crates/health-check/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
minreq = { version = "2.7.0", default-features = false }
9+
minreq = { version = "2.13.3", default-features = false }

crates/migration/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ path = "src/lib.rs"
1111

1212
[dependencies]
1313
entity = { path = "../entity" }
14-
sea-orm-migration = { version = "0.11.1", features = ["sqlx-postgres", "runtime-tokio-native-tls"] }
15-
chrono = "0.4.24"
16-
tracing = "0.1.37"
17-
tracing-subscriber = "0.3.16"
18-
tokio = { version = "1.26.0", features = ["macros"] }
19-
openssl = { version = "0.10.47", features = ["vendored"] }
20-
openssl-probe = "0.1.5"
14+
sea-orm-migration = { version = "0.12.15", features = ["sqlx-postgres", "runtime-tokio-native-tls"] }
15+
chrono = "0.4.40"
16+
tracing = "0.1.41"
17+
tracing-subscriber = "0.3.19"
18+
tokio = { version = "1.44.1", features = ["macros"] }
19+
openssl = { version = "0.10.71", features = ["vendored"] }
20+
openssl-probe = "0.1.6"

crates/server/Cargo.toml

+41-41
Original file line numberDiff line numberDiff line change
@@ -8,49 +8,49 @@ publish = false
88
[dependencies]
99
entity = { path = "../entity" }
1010
migration = { path = "../migration" }
11-
actix-web = "4.3.1"
12-
actix-multipart = { version = "0.6.0" }
13-
actix-cors = { version = "0.6.4" }
11+
actix-web = "4.10.2"
12+
actix-multipart = { version = "0.7.2" }
13+
actix-cors = { version = "0.7.1" }
1414
mime = { version = "0.3.17" }
15-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread", "fs"] }
16-
tokio-util = { version = "0.7.7", features = ["codec"] }
17-
serde = "1.0.158"
18-
tracing = "0.1.37"
19-
tracing-actix-web = { version = "0.7.3", features = ["default", "opentelemetry_0_17"] }
20-
opentelemetry = { version = "0.18", features = ["rt-tokio-current-thread"] }
21-
opentelemetry-jaeger = { version = "0.17", features = ["rt-tokio-current-thread"] }
22-
tracing-opentelemetry = { version = "0.18.0" }
23-
tracing-subscriber = { version = "0.3.16", features = ["registry", "env-filter"] }
24-
tracing-bunyan-formatter = "0.3.6"
25-
tracing-log = "0.1.3"
26-
sea-orm = { version = "0.11.1", features = ["debug-print", "runtime-tokio-native-tls", "sqlx-postgres", "postgres-array"] }
27-
config = { version = "0.13.3" }
28-
serde_json = "1.0.94"
29-
chrono = "0.4.24"
30-
futures = "0.3.27"
31-
getset = "0.1.2"
32-
uuid = { version = "1.3.0", features = ["serde"] }
33-
derive_more = "0.99.17"
34-
url = "2.3.1"
35-
async-trait = "0.1.67"
36-
once_cell = "1.17.1"
37-
aws-sdk-s3 = { version = "0.24.0", features = ["native-tls", "rt-tokio"], default-features = false }
38-
aws-types = { version = "0.54.1" }
39-
aws-config = { version = "0.54.1", features = ["native-tls", "rt-tokio"], default-features = false }
40-
aws-smithy-http = { version = "0.54.4", features = ["rt-tokio"] }
41-
aws-smithy-async = { version = "0.54.4", features = ["rt-tokio"] }
42-
image = { version = "0.24.5" }
43-
openssl = { version = "0.10.47", features = ["vendored"] }
44-
openssl-probe = "0.1.5"
45-
deunicode = { version = "1.3.3" }
46-
lazy_static = { version = "1.4.0" }
47-
base64 = "0.21.0"
48-
reqwest = { version = "0.11.15", features = ["json", "cookies", "multipart", "stream"] }
49-
typed-builder = "0.14.0"
15+
tokio = { version = "1.44.1", features = ["macros", "rt-multi-thread", "fs"] }
16+
tokio-util = { version = "0.7.14", features = ["codec"] }
17+
serde = "1.0.219"
18+
tracing = "0.1.41"
19+
tracing-actix-web = { version = "0.7.16", features = ["default", "opentelemetry_0_17"] }
20+
opentelemetry = { version = "0.28.0", features = ["rt-tokio-current-thread"] }
21+
opentelemetry-jaeger = { version = "0.22.0", features = ["rt-tokio-current-thread"] }
22+
tracing-opentelemetry = { version = "0.29.0" }
23+
tracing-subscriber = { version = "0.3.19", features = ["registry", "env-filter"] }
24+
tracing-bunyan-formatter = "0.3.10"
25+
tracing-log = "0.2.0"
26+
sea-orm = { version = "0.12.15", features = ["debug-print", "runtime-tokio-native-tls", "sqlx-postgres", "postgres-array"] }
27+
config = { version = "0.15.11" }
28+
serde_json = "1.0.140"
29+
chrono = "0.4.40"
30+
futures = "0.3.31"
31+
getset = "0.1.5"
32+
uuid = { version = "1.16.0", features = ["serde"] }
33+
derive_more = "0.99.19"
34+
url = "2.5.4"
35+
async-trait = "0.1.88"
36+
once_cell = "1.21.1"
37+
aws-sdk-s3 = { version = "0.39.1", features = ["native-tls", "rt-tokio"], default-features = false }
38+
aws-types = { version = "0.101.0" }
39+
aws-config = { version = "0.101.0", features = ["native-tls", "rt-tokio"], default-features = false }
40+
aws-smithy-http = { version = "0.62.0", features = ["rt-tokio"] }
41+
aws-smithy-async = { version = "0.101.0", features = ["rt-tokio"] }
42+
image = { version = "0.25.5" }
43+
openssl = { version = "0.10.71", features = ["vendored"] }
44+
openssl-probe = "0.1.6"
45+
deunicode = { version = "1.6.1" }
46+
lazy_static = { version = "1.5.0" }
47+
base64 = "0.22.1"
48+
reqwest = { version = "0.12.14", features = ["json", "cookies", "multipart", "stream"] }
49+
typed-builder = "0.20.1"
5050
humansize = { version = "2.1.3", features = ["impl_style"] }
51-
aws-credential-types = "0.54.1"
51+
aws-credential-types = "0.101.0"
5252

5353
[dev-dependencies]
54-
insta = { version = "1.28.0", features = ["json"] }
54+
insta = { version = "1.42.2", features = ["json"] }
5555
portpicker = "0.1.1"
56-
test-context = "0.1.4"
56+
test-context = "0.4.1"

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ services:
3434

3535

3636
postgres:
37-
image: postgres:16.1-alpine
37+
image: postgres:16.8-alpine
3838
restart: unless-stopped
3939
ports:
4040
- "5432:5432"

0 commit comments

Comments
 (0)