From 84cee06ac17f780a322d1b5182670c23349343b7 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Thu, 21 Mar 2024 20:05:34 -0400 Subject: [PATCH] Rust 1.77 --- orchestration/runtime/Dockerfile | 2 +- orchestration/src/main.rs | 2 +- rust-toolchain.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/orchestration/runtime/Dockerfile b/orchestration/runtime/Dockerfile index 4df69842..21da0a75 100644 --- a/orchestration/runtime/Dockerfile +++ b/orchestration/runtime/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=linux/amd64 rust:1.76.0-slim-bookworm as builder +FROM --platform=linux/amd64 rust:1.77.0-slim-bookworm as builder # Move to a Debian package snapshot RUN rm -rf /etc/apt/sources.list.d/debian.sources && \ diff --git a/orchestration/src/main.rs b/orchestration/src/main.rs index 1a2c48ca..0ec5913f 100644 --- a/orchestration/src/main.rs +++ b/orchestration/src/main.rs @@ -129,7 +129,7 @@ fn build_serai_service(release: bool, features: &str, package: &str) -> String { format!( r#" -FROM rust:1.76-slim-bookworm as builder +FROM rust:1.77-slim-bookworm as builder COPY --from=mimalloc-debian libmimalloc.so /usr/lib RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 227b9c21..77a0cea2 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.76" +channel = "1.77" targets = ["wasm32-unknown-unknown"] profile = "minimal" components = ["rust-src", "rustfmt", "clippy"]