From 9e1ccc2309392eb75cd8e7a22715728d8f045133 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. --- crates/rust-analyzer/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rust-analyzer/src/lib.rs b/crates/rust-analyzer/src/lib.rs index 6ae527abb1ff..3dea21e56485 100644 --- a/crates/rust-analyzer/src/lib.rs +++ b/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,