Skip to content

Commit e8b1dfc

Browse files
authored
Upgrade backend deps, rust version and base images (#347)
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
1 parent 320a861 commit e8b1dfc

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Rust
1616
uses: dtolnay/rust-toolchain@master
1717
with:
18-
toolchain: 1.87.0
18+
toolchain: 1.88.0
1919
components: clippy, rustfmt
2020
- name: Run clippy
2121
run: cargo clippy --all-targets --all-features -- --deny warnings
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup Rust
3131
uses: dtolnay/rust-toolchain@master
3232
with:
33-
toolchain: 1.87.0
33+
toolchain: 1.88.0
3434
- name: Run backend tests
3535
run: cargo test
3636

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010
version = "0.2.0"
1111
license = "Apache-2.0"
1212
edition = "2021"
13-
rust-version = "1.87"
13+
rust-version = "1.88"
1414

1515
[workspace.dependencies]
1616
anyhow = "1.0.98"
@@ -20,7 +20,7 @@ async-trait = "0.1.88"
2020
axum = { version = "0.8.4", features = ["macros"] }
2121
base64 = "0.22.1"
2222
cached = { version = "0.55.1", features = ["async"] }
23-
clap = { version = "4.5.40", features = ["derive"] }
23+
clap = { version = "4.5.41", features = ["derive"] }
2424
clowarden-core = { path = "../clowarden-core" }
2525
deadpool-postgres = { version = "0.14.1", features = ["serde"] }
2626
figment = { version = "0.10.19", features = ["yaml", "env"] }
@@ -46,7 +46,7 @@ time = { version = "0.3.41", features = [
4646
"parsing",
4747
"serde",
4848
] }
49-
tokio = { version = "1.45.1", features = [
49+
tokio = { version = "1.46.1", features = [
5050
"macros",
5151
"process",
5252
"rt-multi-thread",

database/migrations/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build tern
2-
FROM golang:1.24.4-alpine3.22 AS tern
2+
FROM golang:1.24.5-alpine3.22 AS tern
33
RUN apk --no-cache add git
44
RUN go install github.com/jackc/tern@latest
55

0 commit comments

Comments
 (0)