Skip to content

Commit 77cde96

Browse files
Merge #1157: chore: pin byteorder and webpki to fix MSRV
1db3f87 chore: pin `byteorder` and `webpki` to fix MSRV (志宇) Pull request description: * pin `byteorder` to 1.4.3 * pin `webpki` to 0.22.2 * it's tokio:1.33.0 that needs to be pinned to 1.29.1 * fix README MSRV comments ACKs for top commit: danielabrozzoni: utACK 1db3f87 Tree-SHA512: 4c2dc009ea117dd7ca18c7a836eb2b169c68d6ccaf84f85bcc2d4a3bcb7b008ad99f1dadf933b20c9d6ca6cc761e89dbafa99f99e31776e291f480cd6a112b1d
2 parents 4a65a12 + 1db3f87 commit 77cde96

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/cont_integration.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
cargo update -p tempfile --precise "3.6.0"
3535
cargo update -p rustls:0.21.7 --precise "0.21.1"
3636
cargo update -p rustls:0.20.9 --precise "0.20.8"
37-
cargo update -p tokio:1.32.0 --precise "1.29.1"
37+
cargo update -p tokio:1.33.0 --precise "1.29.1"
3838
cargo update -p tokio-util --precise "0.7.8"
3939
cargo update -p flate2:1.0.27 --precise "1.0.26"
4040
cargo update -p reqwest --precise "0.11.18"
@@ -44,6 +44,8 @@ jobs:
4444
cargo update -p zip:0.6.6 --precise "0.6.2"
4545
cargo update -p time --precise "0.3.13"
4646
cargo update -p cc --precise "1.0.81"
47+
cargo update -p byteorder --precise "1.4.3"
48+
cargo update -p webpki --precise "0.22.2"
4749
- name: Build
4850
run: cargo build ${{ matrix.features }}
4951
- name: Test

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ 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-
# rustls 0.21.2 has MSRV 1.60.0+
72+
# rustls 0.21.7 has MSRV 1.60.0+
7373
cargo update -p rustls:0.21.7 --precise "0.21.1"
7474
# rustls 0.20.9 has MSRV 1.60.0+
7575
cargo update -p rustls:0.20.9 --precise "0.20.8"
76-
# tokio 1.30 has MSRV 1.63.0+
77-
cargo update -p tokio:1.32.0 --precise "1.29.1"
76+
# tokio 1.33 has MSRV 1.63.0+
77+
cargo update -p tokio:1.33.0 --precise "1.29.1"
7878
# tokio-util 0.7.9 doesn't build with MSRV 1.57.0
7979
cargo update -p tokio-util --precise "0.7.8"
8080
# flate2 1.0.27 has MSRV 1.63.0+
@@ -83,16 +83,20 @@ cargo update -p flate2:1.0.27 --precise "1.0.26"
8383
cargo update -p reqwest --precise "0.11.18"
8484
# h2 0.3.21 has MSRV 1.63.0+
8585
cargo update -p h2 --precise "0.3.20"
86-
# rustls-webpki 0.100.2 has MSRV 1.60.0+
86+
# rustls-webpki 0.100.3 has MSRV 1.60.0+
8787
cargo update -p rustls-webpki:0.100.3 --precise "0.100.1"
8888
# rustls-webpki 0.101.2 has MSRV 1.60.0+
8989
cargo update -p rustls-webpki:0.101.6 --precise "0.101.1"
90-
# zip 0.6.3 has MSRV 1.59.0+
90+
# zip 0.6.6 has MSRV 1.59.0+
9191
cargo update -p zip:0.6.6 --precise "0.6.2"
9292
# time 0.3.14 has MSRV 1.59.0+
9393
cargo update -p time --precise "0.3.13"
9494
# cc 1.0.82 has MSRV 1.61.0+
9595
cargo update -p cc --precise "1.0.81"
96+
# byteorder 1.5.0 has MSRV 1.60.0+
97+
cargo update -p byteorder --precise "1.4.3"
98+
# webpki 0.22.4 requires `ring:0.17.2` which has MSRV 1.61.0+
99+
cargo update -p webpki --precise "0.22.2"
96100
```
97101

98102
## License

0 commit comments

Comments
 (0)