From cfcd6e1721ff89c34294ecdcf5df876211916ae0 Mon Sep 17 00:00:00 2001 From: Gjermund Garaba Date: Mon, 24 Mar 2025 16:32:22 +0300 Subject: [PATCH] chore: bump rust to latest stable --- CHANGELOG.md | 2 ++ Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4330634..4643903 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +- Bump Rust to current stable 1.85.1 + ## [0.16.1] - 2024-10-11 - Bump Rust to current stable 1.81.0 diff --git a/Dockerfile b/Dockerfile index 73f81be..3551076 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.81.0-alpine AS targetarch +FROM rust:1.85.1-alpine AS targetarch ARG BUILDPLATFORM ARG TARGETPLATFORM @@ -74,7 +74,7 @@ RUN cd bob_the_builder && \ # # rust-optimizer target # -FROM rust:1.81.0-alpine AS rust-optimizer +FROM rust:1.85.1-alpine AS rust-optimizer # Download the crates.io index using the new sparse protocol to improve performance ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse