Skip to content

Commit 070de73

Browse files
Mossakaclaude
andcommitted
fix: pin cross to v0.2.4 for compatibility with rustc 1.85.0
The latest cross version (0.2.5) requires rustc 1.92.0+, but the project uses rustc 1.85.0 as specified in rust-toolchain.toml. This change pins cross to v0.2.4 which is compatible with rustc 1.85.0. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent a518afe commit 070de73

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/setup-cross.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
2-
cargo install cross --git https://github.com/cross-rs/cross
2+
# Pin to v0.2.4 which supports rustc 1.85.0
3+
# v0.2.5 requires rustc 1.92.0+
4+
cargo install cross --git https://github.com/cross-rs/cross --tag v0.2.4
35

46
if [ ! -z "$CI" ]; then
57

0 commit comments

Comments
 (0)