From bce6effa07e0cbcd5d2aa1907de895a590349a5d Mon Sep 17 00:00:00 2001 From: James Wainwright Date: Thu, 22 Aug 2024 11:14:17 +0100 Subject: [PATCH] Require nightly toolchain for Rust We're using the (long-term) unstable `build-std` feature which requires the nightly compiler. --- sw/rust/rust-toolchain.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/sw/rust/rust-toolchain.toml b/sw/rust/rust-toolchain.toml index 9377211d..5269f09c 100644 --- a/sw/rust/rust-toolchain.toml +++ b/sw/rust/rust-toolchain.toml @@ -1,2 +1,3 @@ [toolchain] targets = ["riscv32imc-unknown-none-elf"] +channel = "nightly"