From 1ee0836fc6308f17f75296f81594eee86d976f4b Mon Sep 17 00:00:00 2001 From: Chuanxiao Dong Date: Wed, 7 Aug 2024 08:26:48 +0800 Subject: [PATCH] toolchain: Stick to the cargo version 1.76.0 Stick to a specific cargo version to avoid the new compiling errors and warnings introduced due to cargo updating. Signed-off-by: Chuanxiao Dong --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 0f1cbedf..59c43175 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "stable" +channel = "1.76.0" targets = [ "x86_64-unknown-none" ]