Unnamed repository; edit this file 'description' to name the repository.
Merge pull request #22876 from ChayimFriedman2/upgrade-unsupported-toolchain
fix: Change unsupported toolchain version to match reality
| -rw-r--r-- | crates/rust-analyzer/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/lib.rs b/crates/rust-analyzer/src/lib.rs index e953ea2136..9eee516c3a 100644 --- a/crates/rust-analyzer/src/lib.rs +++ b/crates/rust-analyzer/src/lib.rs @@ -22,7 +22,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: 94, patch: 0, pre: semver::Prerelease::EMPTY, build: semver::BuildMetadata::EMPTY, |