From 66c3c66e3518ec7978f6bc7f56dbe41d909032d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Tue, 22 Aug 2023 13:24:23 +0200 Subject: [PATCH] build: upgrade Rust to nightly-2023-08-15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- Dockerfile | 2 +- rust-toolchain.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c7db54840..d5f3d5572 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ # Manually sync this with rust-toolchain.toml! - RUST_VERSION=nightly-2023-08-01 \ + RUST_VERSION=nightly-2023-08-15 \ RUST_COMPONENTS="rust-src" RUN set -eux; \ diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 5542a1749..322da7899 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] # Manually sync this with Dockerfile! -channel = "nightly-2023-08-01" +channel = "nightly-2023-08-15" components = [ "rust-src" ]