about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLukas Wirth <lukastw97@gmail.com>2025-03-03 14:26:01 +0000
committerGitHub <noreply@github.com>2025-03-03 14:26:01 +0000
commitd137fee54236b378315da97453e9eb3c1d302387 (patch)
treebfe15fa33c3caf1b5c536ca7cc35ca61d0257664
parent16644ba8b8719c800415ad582126d4b1808009df (diff)
parentde07b171effdd344c51907998236dd6aafaa5b72 (diff)
Merge pull request #19275 from lnicola/min-1-82
Bump minimum supported toolchain to 1.82
-rw-r--r--src/tools/rust-analyzer/crates/rust-analyzer/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
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 a0d6a0d6da6..b9e38f2e691 100644
--- a/src/tools/rust-analyzer/crates/rust-analyzer/src/lib.rs
+++ b/src/tools/rust-analyzer/crates/rust-analyzer/src/lib.rs
@@ -12,7 +12,7 @@
 /// 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: 82,
     patch: 0,
     pre: semver::Prerelease::EMPTY,
     build: semver::BuildMetadata::EMPTY,