Skip to content

Commit 2308d17

Browse files
authored
Upgrade backend deps, rust version and base images (#634)
Signed-off-by: Sergio Castaño Arteaga <tegioz@icloud.com>
1 parent d7e472e commit 2308d17

4 files changed

Lines changed: 36 additions & 23 deletions

File tree

.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,6 +30,6 @@ 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

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ description = "GitVote server"
44
version = "1.4.0"
55
license = "Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.87"
7+
rust-version = "1.88"
88

99
[dependencies]
1010
anyhow = "1.0.98"
1111
askama = { version = "0.14.0", features = ["serde_json"] }
12-
async-channel = "2.3.1"
12+
async-channel = "2.5.0"
1313
async-trait = "0.1.88"
1414
axum = { version = "0.8.4", features = ["macros"] }
15-
clap = { version = "4.5.40", features = ["derive"] }
15+
clap = { version = "4.5.41", features = ["derive"] }
1616
deadpool-postgres = { version = "0.14.1", features = ["serde"] }
1717
figment = { version = "0.10.19", features = ["yaml", "env"] }
1818
futures = "0.3.31"
@@ -28,14 +28,14 @@ octocrab = "0.44.1"
2828
openssl = { version = "0.10.73", features = ["vendored"] }
2929
postgres-openssl = "0.5.1"
3030
regex = "1.11.1"
31-
reqwest = "0.12.20"
31+
reqwest = "0.12.22"
3232
serde = { version = "1.0.219", features = ["derive"] }
3333
serde_json = "1.0.140"
3434
serde_yaml = "0.9.34"
3535
sha2 = "0.10.9"
3636
thiserror = "2.0.12"
3737
time = { version = "0.3.41", features = ["serde"] }
38-
tokio = { version = "1.45.1", features = [
38+
tokio = { version = "1.46.1", features = [
3939
"macros",
4040
"rt-multi-thread",
4141
"signal",

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)