Skip to content

Commit f389333

Browse files
committed
Update rust version
1 parent 8af9377 commit f389333

4 files changed

Lines changed: 100 additions & 57 deletions

File tree

Cargo.lock

Lines changed: 93 additions & 50 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
@@ -1,14 +1,14 @@
11
[package]
22
name = "openworkers-logs"
3-
version = "0.1.1"
4-
edition = "2021"
3+
version = "0.1.2"
4+
edition = "2024"
55

66
[dependencies]
7-
actix-web = "4.9.0"
8-
actix-web-lab = "0.23.0"
7+
actix-web = "4.12.1"
8+
actix-web-lab = "0.24.3"
99
tokio = { version = "1.43.0", features = ["full"] }
1010
sqlx = { version = "0.8.3", features = ["runtime-tokio", "postgres", "uuid", "chrono"] }
11-
async-nats = "0.37"
11+
async-nats = "0.45.0"
1212
futures = "0.3"
1313
serde = { version = "1.0.197", features = ["derive"] }
1414
serde_json = "1.0.137"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.91 AS chef
1+
FROM rust:1.91-bookworm AS chef
22
RUN cargo install cargo-chef
33
WORKDIR /build
44

Dockerfile.multi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get update \
55
&& apt-get install -y ca-certificates wget \
66
&& rm -rf /var/lib/apt/lists/*
77

8-
FROM --platform=$BUILDPLATFORM rust:1.91 AS prepare
8+
FROM --platform=$BUILDPLATFORM rust:1.91-bookworm AS prepare
99

1010
RUN apt-get update && apt-get install -y \
1111
gcc-aarch64-linux-gnu \

0 commit comments

Comments
 (0)