From 8de05bb595920b744b739f23a78cdbadd648022e Mon Sep 17 00:00:00 2001 From: Samuel Laferriere <9342524+samlaf@users.noreply.github.com> Date: Mon, 27 Jul 2026 12:48:03 -0400 Subject: [PATCH] chore: add rust-analyzer to rust-toolchain newest vscode's shipped rust-analyzer is too new and not compatible with our pinned 1.91.1 rust version, so we need this. --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index be7906de..062b4fb8 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] channel = "1.91.1" -components = ["rustfmt", "clippy"] \ No newline at end of file +components = ["rustfmt", "clippy", "rust-analyzer"]