From ceff470a5f45ae217bb28a06bc89fc062f4e18be Mon Sep 17 00:00:00 2001 From: Nikolaus Heger Date: Tue, 1 Sep 2026 19:03:54 +0800 Subject: [PATCH] ci: pin the stable rust toolchain (#91) 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 92a57c5..7864ec2 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1,4 +1,4 @@ [toolchain] -channel = "stable" +channel = "1.93.0" components = ["clippy", "rustfmt"] profile = "minimal"