about summary refs log tree commit diff
diff options
context:
space:
mode:
authorShoyu Vanilla <modulo641@gmail.com>2025-06-26 01:20:35 +0900
committerShoyu Vanilla <modulo641@gmail.com>2025-06-26 01:20:35 +0900
commited5618fecc71dd89c2a0369f7762c8f97bc307fd (patch)
treec510d386cd2d8d4545d88d8f47ed922b12b9552b
parent889770abdff913aa572470160333bb3a0ffb3ed1 (diff)
downloadrust-ed5618fecc71dd89c2a0369f7762c8f97bc307fd.tar.gz
rust-ed5618fecc71dd89c2a0369f7762c8f97bc307fd.zip
minor: Decrease minimal toolchain version for `comp-time-deps` by `0.1`
-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 4435376eab6..1dece1c766d 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
@@ -452,7 +452,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: 90,
+            minor: 89,
             patch: 0,
             pre: semver::Prerelease::EMPTY,
             build: semver::BuildMetadata::EMPTY,