]> Untitled Git - bdk/commitdiff
ci: fix msrv dependency versions for rustls
authorSteve Myers <steve@notmandatory.org>
Wed, 30 Aug 2023 17:12:33 +0000 (12:12 -0500)
committerSteve Myers <steve@notmandatory.org>
Wed, 30 Aug 2023 18:31:35 +0000 (13:31 -0500)
.github/workflows/cont_integration.yml
README.md

index f02dcb83441e9a35a70834f68bced4025952a92d..63b9a0b7341e8f9ab465447432a15558bd9be300 100644 (file)
@@ -32,7 +32,8 @@ jobs:
         run: |
           cargo update -p log --precise "0.4.18"
           cargo update -p tempfile --precise "3.6.0"
-          cargo update -p rustls:0.21.6 --precise "0.21.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"
           cargo update -p flate2:1.0.27 --precise "1.0.26"
           cargo update -p reqwest --precise "0.11.18"
index ae230abbde66510a3ca568a9658533f1fddfab60..b54a89d00632ab752683b50e6de4f2dca2a216be 100644 (file)
--- a/README.md
+++ b/README.md
@@ -64,13 +64,15 @@ This library should compile with any combination of features with Rust 1.57.0.
 
 To build with the MSRV you will need to pin dependencies as follows:
 
-```
+```shell
 # log 0.4.19 has MSRV 1.60.0+
 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"
 # rustls 0.21.2 has MSRV 1.60.0+
-cargo update -p rustls:0.21.6 --precise "0.21.1"
+cargo update -p rustls:0.21.7 --precise "0.21.1"
+# rustls 0.20.9 has MSRV 1.60.0+
+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"
 # flate2 1.0.27 has MSRV 1.63.0+