You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should still build with a rustc as far back as 1.75.0, but the lack of a MSRV-aware resolver means an increasinly large number of dependencies have to be manually pinned to old versions, and figuring it out is a huge pain.
Copy file name to clipboardExpand all lines: .github/workflows/cargo-test.yml
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -39,16 +39,10 @@ jobs:
39
39
run: if [[ ! -z `git status --porcelain=v1` ]]; then echo "::error::Workspace is dirty after running generator. Did you remember to check in the generated files?"; exit 1; fi
40
40
41
41
- name: Install MSRV toolchain
42
-
run: rustup install 1.75.0 --profile minimal
43
-
44
-
# remove this once our MSRV is >= 1.84, which has the MSRV-aware resolver
45
-
- name: fix deps for old rustc
46
-
run: |
47
-
rustup run 1.75.0 cargo update litemap --precise 0.7.4
48
-
rustup run 1.75.0 cargo update zerofrom --precise 0.1.5
0 commit comments