Skip to content

Commit 7b36cf8

Browse files
authored
Upgrade backend dependencies, rust version and base images (#776)
* Upgrade backend deps and rust version Signed-off-by: Sergio Castaño Arteaga <[email protected]> * Upgrade base images Signed-off-by: Sergio Castaño Arteaga <[email protected]> --------- Signed-off-by: Sergio Castaño Arteaga <[email protected]>
1 parent e234cb4 commit 7b36cf8

File tree

4 files changed

+47
-37
lines changed

4 files changed

+47
-37
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
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

Cargo.lock

Lines changed: 40 additions & 30 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
@@ -10,15 +10,15 @@ members = [
1010
version = "1.0.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"
1717
async-trait = "0.1.88"
1818
axum = { version = "0.8.4", features = ["macros"] }
1919
bincode = { version = "2.0.1", features = ["serde"] }
20-
clap = { version = "4.5.40", features = ["derive"] }
21-
config = "0.15.11"
20+
clap = { version = "4.5.41", features = ["derive"] }
21+
config = "0.15.13"
2222
deadpool = "0.12.2"
2323
deadpool-postgres = { version = "0.14.1", features = ["serde"] }
2424
futures = "0.3.31"
@@ -33,7 +33,7 @@ openssl = { version = "0.10.73", features = ["vendored"] }
3333
postgres-openssl = "0.5.1"
3434
postgres-types = { version = "0.2.9", features = ["derive"] }
3535
regex = "1.11.1"
36-
reqwest = { version = "0.12.20", features = ["json"] }
36+
reqwest = { version = "0.12.22", features = ["json"] }
3737
serde = { version = "1.0.219", features = ["derive"] }
3838
serde_json = "1.0.140"
3939
serde_qs = "0.15.0"
@@ -45,7 +45,7 @@ time = { version = "0.3.41", features = [
4545
"parsing",
4646
"serde",
4747
] }
48-
tokio = { version = "1.45.1", features = [
48+
tokio = { version = "1.46.1", features = [
4949
"macros",
5050
"process",
5151
"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)