From 407188f81615329edb299950d4f21648d43e7b2b Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Thu, 13 Jun 2024 23:05:25 +0200 Subject: [PATCH] chore: Bump Rust version to 1.79 (#12987) This is blocked on a release of new Docker image for 1.79 (https://github.com/docker-library/official-images/pull/16981) Release Notes: - N/A --- Dockerfile | 2 +- rust-toolchain.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0614ae589e2fb149bc230fc88dfe65942f9808d7..6c8d3dab3b644b17ed258798bfd2ab89923e35a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax = docker/dockerfile:1.2 -FROM rust:1.78-bookworm as builder +FROM rust:1.79-bookworm as builder WORKDIR app COPY . . diff --git a/rust-toolchain.toml b/rust-toolchain.toml index f618116c84cff570388a7e5e210c6dde3a67ae6e..8d422bd518e96faf5451f763225e71b16e28052a 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.78" +channel = "1.79" profile = "minimal" components = [ "rustfmt", "clippy" ] targets = [ "x86_64-apple-darwin", "aarch64-apple-darwin", "x86_64-unknown-linux-gnu", "wasm32-wasi" ]