Skip to content

Commit

Permalink
fix: cargo MSRV issues with minreq
Browse files Browse the repository at this point in the history
Co-authored-by: Steve Myers <[email protected]>
  • Loading branch information
evanlinjin and notmandatory committed Sep 2, 2023
1 parent c56728f commit 905101d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
run: |
cargo update -p log --precise "0.4.18"
cargo update -p tempfile --precise "3.6.0"
cargo update -p minreq --precise "2.8.1"
cargo update -p rustls:0.21.7 --precise "0.21.1"
cargo update -p rustls:0.20.9 --precise "0.20.8"
cargo update -p tokio:1.32.0 --precise "1.29.1"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ To build with the MSRV you will need to pin dependencies as follows:
cargo update -p log --precise "0.4.18"
# tempfile 3.7.0 has MSRV 1.63.0+
cargo update -p tempfile --precise "3.6.0"
# minreq 2.9.0 prevents pinning rustls to 0.21.1
cargo update -p minreq --precise "2.8.1"
# rustls 0.21.2 has MSRV 1.60.0+
cargo update -p rustls:0.21.7 --precise "0.21.1"
# rustls 0.20.9 has MSRV 1.60.0+
Expand All @@ -81,7 +83,7 @@ cargo update -p flate2:1.0.27 --precise "1.0.26"
cargo update -p reqwest --precise "0.11.18"
# h2 0.3.21 has MSRV 1.63.0+
cargo update -p h2 --precise "0.3.20"
# rustls-webpki has MSRV 1.60.0+
# rustls-webpki 0.100.2 has MSRV 1.60.0+
cargo update -p rustls-webpki --precise "0.100.1"
```

Expand Down

0 comments on commit 905101d

Please sign in to comment.