Skip to content

Commit

Permalink
ci: fix MSRV build by pinning tokio-util to 0.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
notmandatory committed Sep 25, 2023
1 parent 4c683ad commit 3fc3dcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
cargo update -p reqwest --precise "0.11.18"
cargo update -p h2 --precise "0.3.20"
cargo update -p rustls-webpki --precise "0.100.1"
cargo update -p tokio-util --precise "0.7.8"
- name: Build
run: cargo build ${{ matrix.features }}
- name: Test
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ cargo update -p reqwest --precise "0.11.18"
cargo update -p h2 --precise "0.3.20"
# rustls-webpki has MSRV 1.60.0+
cargo update -p rustls-webpki --precise "0.100.1"
# tokio-util 0.7.9 does not build with our MSRV
cargo update -p tokio-util --precise "0.7.8"
```

## License
Expand Down

0 comments on commit 3fc3dcf

Please sign in to comment.