Skip to content

Commit

Permalink
chore: Fix MSRV build. (#497)
Browse files Browse the repository at this point in the history
Pin the version of indexmap (transitive dependency) to 1.8.2, the last
version before they switched to edition 2021, which requires rust 1.56.
  • Loading branch information
adam-azarchs committed Aug 19, 2022
1 parent 639f42b commit 976e27d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Expand Up @@ -98,6 +98,10 @@ jobs:
- name: check if README matches MSRV defined here
run: grep '1.53.0' README.md

- name: pin dependency versions for MSRV
run: |
cargo update -p indexmap --precise 1.8.2
- name: Run tests
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit 976e27d

Please sign in to comment.