Skip to content

Commit 4993b34

Browse files
committed
Fix bitflags breaking MSRV
1 parent f5ad566 commit 4993b34

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,18 @@ jobs:
2121
toolchain: ${{ matrix.rust }}
2222
profile: minimal
2323
override: true
24+
- uses: actions-rs/cargo@v1
25+
name: Downgrade bitflags to MSRV
26+
if: ${{ matrix.rust }} == "1.36.0"
27+
with:
28+
command: update
29+
args: -p bitflags --precise 1.2.1
30+
- uses: actions-rs/cargo@v1
31+
name: Downgrade indexmap to MSRV
32+
if: ${{ matrix.rust }} == "1.36.0"
33+
with:
34+
command: update
35+
args: -p indexmap --precise 1.6.2
2436
- run: cargo test
2537
- run: cargo test --all-features
2638

0 commit comments

Comments
 (0)