Skip to content

Commit 93a3d3a

Browse files
committed
CI: fix MSRV problems
1 parent 40fb31a commit 93a3d3a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/rust.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ jobs:
6464
cargo -Z minimal-versions update
6565
cargo update --precise 1.3.0 lazy_static
6666
cargo update tracing
67+
# there is a version of time w/o itoa, 0.3.42, which the solver prefers, but
68+
# which is just too new for our current MSRV
69+
cargo update itoa@1
70+
cargo update --precise 0.3.41 [email protected]
6771
if: matrix.rust.name == 'MSRV'
6872
- uses: dtolnay/rust-toolchain@master
6973
with:
@@ -119,6 +123,7 @@ jobs:
119123
~/.cargo/registry
120124
target
121125
key: "${{runner.os}} Rust ${{steps.rust-toolchain.outputs.cachekey}} (clippy)"
126+
- run: cargo --config 'resolver.incompatible-rust-versions="fallback"' update
122127
- run: cargo clippy --workspace --profile test -- -Dclippy::all
123128

124129
rustfmt:

0 commit comments

Comments
 (0)