about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@users.noreply.github.com>2025-07-27 19:34:24 +0000
committerGitHub <noreply@github.com>2025-07-27 19:34:24 +0000
commit7f19af89b64dd02ee3b7fcdcd0832df5cad88dc6 (patch)
tree92a72d790cc5956a270b503ad2728ecf563eb1ca /src
parent2749482d6b16977bbe66ec3aeceec342967bc306 (diff)
parentc5480a9096e6c0c859902f2fc7529e4119ad7124 (diff)
downloadrust-7f19af89b64dd02ee3b7fcdcd0832df5cad88dc6.tar.gz
rust-7f19af89b64dd02ee3b7fcdcd0832df5cad88dc6.zip
Merge pull request #20317 from Veykril/push-koossvzyyvmm
fix: Fix incorrect build script version check
Diffstat (limited to 'src')
-rw-r--r--src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs b/src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs
index dec1ffc72d6..289b033a6ad 100644
--- a/src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs
+++ b/src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs
@@ -499,7 +499,7 @@ impl WorkspaceBuildScripts {
                 // available in current toolchain's cargo, use it to build compile time deps only.
                 const COMP_TIME_DEPS_MIN_TOOLCHAIN_VERSION: semver::Version = semver::Version {
                     major: 1,
-                    minor: 189,
+                    minor: 89,
                     patch: 0,
                     pre: semver::Prerelease::EMPTY,
                     build: semver::BuildMetadata::EMPTY,