Skip to content

Commit d747a63

Browse files
fix: cargo MSRV issues with minreq
Co-authored-by: Steve Myers <[email protected]>
1 parent 28b0d8f commit d747a63

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/cont_integration.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
run: |
3333
cargo update -p log --precise "0.4.18"
3434
cargo update -p tempfile --precise "3.6.0"
35+
cargo update -p minreq --precise "2.8.1"
3536
cargo update -p rustls:0.21.6 --precise "0.21.1"
3637
cargo update -p tokio:1.32.0 --precise "1.29.1"
3738
cargo update -p flate2:1.0.27 --precise "1.0.26"

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ To build with the MSRV you will need to pin dependencies as follows:
6969
cargo update -p log --precise "0.4.18"
7070
# tempfile 3.7.0 has MSRV 1.63.0+
7171
cargo update -p tempfile --precise "3.6.0"
72+
# minreq 2.9.0 prevents pinning rustls to 0.21.1
73+
cargo update -p minreq --precise "2.8.1"
7274
# rustls 0.21.2 has MSRV 1.60.0+
7375
cargo update -p rustls:0.21.6 --precise "0.21.1"
7476
# tokio 1.30 has MSRV 1.63.0+
@@ -79,7 +81,7 @@ cargo update -p flate2:1.0.27 --precise "1.0.26"
7981
cargo update -p reqwest --precise "0.11.18"
8082
# h2 0.3.21 has MSRV 1.63.0+
8183
cargo update -p h2 --precise "0.3.20"
82-
# rustls-webpki has MSRV 1.60.0+
84+
# rustls-webpki 0.100.2 has MSRV 1.60.0+
8385
cargo update -p rustls-webpki --precise "0.100.1"
8486
```
8587

0 commit comments

Comments
 (0)