From 96028cf0c48ef04acbf35c140c461359ac42d802 Mon Sep 17 00:00:00 2001 From: Samuel Laferriere <9342524+samlaf@users.noreply.github.com> Date: Fri, 31 Jul 2026 13:21:02 -0400 Subject: [PATCH] chore(rust-toolchain): bump channel to 1.95 commonware has bumped to 1.95 on their main branch recently (https://github.com/commonwarexyz/monorepo/pull/4258) so we'll pull that in at some point. This bump is also needed for vscode tooling since now that the rust-analyzer is added as a component, it creates problems when opening our seismic workspace since our other repos (seismic-reth, alloy, etc) dont have a toolchain that pins, so they are using the latest cargo (1.97) which has breaking changes wrt 1.91 and therefore disables rust-analyzer across the workspace. --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 062b4fb8..a30318a0 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.91.1" +channel = "1.95.0" components = ["rustfmt", "clippy", "rust-analyzer"]