From 15c6427018d0f48554b6c82a89cd49a111757423 Mon Sep 17 00:00:00 2001 From: Nikolaus Heger Date: Tue, 1 Sep 2026 18:53:32 +0800 Subject: [PATCH] ci: pin the stable rust toolchain CI resolved the floating stable channel, so Rust 1.98 shipped the chunks_exact_to_as_chunks clippy lint and failed checks that passed on an older local stable. Pin the exact version, matching how chain pins its toolchains. --- rust-toolchain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain b/rust-toolchain index 92a57c50..7864ec2d 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1,4 +1,4 @@ [toolchain] -channel = "stable" +channel = "1.93.0" components = ["clippy", "rustfmt"] profile = "minimal"