From 2a83c08ef72655ef22f1bfdcd30ed2f3e687173d Mon Sep 17 00:00:00 2001 From: Rahix Date: Wed, 25 Sep 2024 02:51:59 +0200 Subject: [PATCH] Upgrade rust toolchain to nightly-2024-10-11 --- .github/workflows/ci.yml | 2 +- rust-toolchain.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 507335a20c..2cad3d1fb3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,7 +106,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2023-12-28 + toolchain: nightly-2024-10-11 components: rust-src - name: Install avr-gcc, binutils, and libc run: sudo apt-get install -y avr-libc binutils-avr gcc-avr diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 270cc88989..66b1c08f15 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "nightly-2024-03-22" +channel = "nightly-2024-10-11" components = [ "rust-src" ] profile = "minimal"