From e9d18d5b6077b8de8d90e49e5be4964c9f97ceff Mon Sep 17 00:00:00 2001 From: Chayim Refael Friedman Date: Sun, 7 Dec 2025 02:14:39 +0200 Subject: [PATCH] Update supported Rust version to 1.90.0 We no longer work properly with older versions. --- src/tools/rust-analyzer/crates/rust-analyzer/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rust-analyzer/crates/rust-analyzer/src/lib.rs b/src/tools/rust-analyzer/crates/rust-analyzer/src/lib.rs index 6ae527abb1ff..3dea21e56485 100644 --- a/src/tools/rust-analyzer/crates/rust-analyzer/src/lib.rs +++ b/src/tools/rust-analyzer/crates/rust-analyzer/src/lib.rs @@ -14,7 +14,7 @@ extern crate ra_ap_rustc_type_ir as rustc_type_ir; /// Any toolchain less than this version will likely not work with rust-analyzer built from this revision. pub const MINIMUM_SUPPORTED_TOOLCHAIN_VERSION: semver::Version = semver::Version { major: 1, - minor: 78, + minor: 90, patch: 0, pre: semver::Prerelease::EMPTY, build: semver::BuildMetadata::EMPTY,