diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 082435794..e8e47fd63 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -35,11 +35,12 @@ jobs: 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" + cargo update -p tokio-util --precise "0.7.8" cargo update -p flate2:1.0.27 --precise "1.0.26" cargo update -p reqwest --precise "0.11.18" cargo update -p h2 --precise "0.3.20" cargo update -p rustls-webpki:0.100.3 --precise "0.100.1" - cargo update -p rustls-webpki:0.101.5 --precise "0.101.1" + cargo update -p rustls-webpki:0.101.6 --precise "0.101.1" cargo update -p zip:0.6.6 --precise "0.6.2" - name: Build run: cargo build ${{ matrix.features }} diff --git a/README.md b/README.md index 3969c8ed0..d3c56f166 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,8 @@ cargo update -p rustls:0.21.7 --precise "0.21.1" cargo update -p rustls:0.20.9 --precise "0.20.8" # tokio 1.30 has MSRV 1.63.0+ cargo update -p tokio:1.32.0 --precise "1.29.1" +# tokio-util 0.7.9 doesn't build with MSRV 1.57.0 +cargo update -p tokio-util --precise "0.7.8" # flate2 1.0.27 has MSRV 1.63.0+ cargo update -p flate2:1.0.27 --precise "1.0.26" # reqwest 0.11.19 has MSRV 1.63.0+ @@ -84,7 +86,7 @@ cargo update -p h2 --precise "0.3.20" # rustls-webpki 0.100.2 has MSRV 1.60.0+ cargo update -p rustls-webpki:0.100.3 --precise "0.100.1" # rustls-webpki 0.101.2 has MSRV 1.60.0+ -cargo update -p rustls-webpki:0.101.5 --precise "0.101.1" +cargo update -p rustls-webpki:0.101.6 --precise "0.101.1" # zip 0.6.3 has MSRV 1.59.0+ cargo update -p zip:0.6.6 --precise "0.6.2" ```