Skip to content

Commit

Permalink
Fix build for rust 1.42.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed Sep 24, 2022
1 parent 03025ee commit de3b572
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Expand Up @@ -26,7 +26,9 @@ jobs:
rustup default ${{matrix.rust_channel}}
- name: MSRV dependencies
if: matrix.rust_channel == '1.42.0'
run: cargo update -p indexmap --precise 1.6.2
run: |
cargo update -p indexmap --precise 1.6.2
cargo update -p once_cell --precise 1.14.0
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down

0 comments on commit de3b572

Please sign in to comment.