From b4ccb08eb410a52be82bd46dbae742d5e05feda7 Mon Sep 17 00:00:00 2001 From: Greg Pfeil Date: Fri, 6 Dec 2024 14:07:51 -0700 Subject: [PATCH] Pin rustup channel to "1.81" Newer versions until 1.85 (current nightly) have some breakage wrt C++ linking. --- rust-toolchain.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 292fe499e..a99c5d2f2 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,4 @@ [toolchain] -channel = "stable" +# C++ linking on Linux broke in 1.82, but is fixed again in 1.85. This can be bumped once that is +# released. +channel = "1.81"