From 4c66e486f33400e478619f3c0a78dc1468db3569 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Fri, 13 Oct 2023 15:46:45 -0500 Subject: [PATCH] ci: fix flate2 MSRV version pinning in workflow and README --- .github/workflows/cont_integration.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 4d60f15b97..4bb31ffbea 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -36,7 +36,7 @@ jobs: cargo update -p rustls:0.20.9 --precise "0.20.8" cargo update -p tokio:1.33.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 flate2 --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" diff --git a/README.md b/README.md index 5e2cec6d5e..4f97f10154 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ cargo update -p tokio:1.33.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" +cargo update -p flate2 --precise "1.0.26" # reqwest 0.11.19 has MSRV 1.63.0+ cargo update -p reqwest --precise "0.11.18" # h2 0.3.21 has MSRV 1.63.0+