From 2586c549a96cd6d61c0de21122f9120dcddb8cfa Mon Sep 17 00:00:00 2001 From: Lun-Kai Hsu Date: Wed, 22 Jul 2026 20:05:15 +0000 Subject: [PATCH] chore: bump toolchain 1.90.0 -> 1.93.0 1.90 is below openvm v2's MSRV (1.91.1), which traps any 'cargo install' of openvm tooling run from inside this repo's directory (rustup resolves the toolchain pin from cwd). The CLI has no MSRV of its own and no openvm deps; workspace builds clean on 1.93.0 and the two axiom-sdk doctest failures reproduce identically on 1.90 (pre-existing, env-dependent). --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index f35f369..fb5449a 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.90.0" +channel = "1.93.0" components = ["clippy", "rustfmt"]