Skip to content

Commit 5fb5061

Browse files
committed
ci: fix msrv dependency versions for rustls
1 parent dd5b8d7 commit 5fb5061

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/cont_integration.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ 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 rustls:0.21.6 --precise "0.21.1"
35+
cargo update -p rustls:0.21.7 --precise "0.21.1"
36+
cargo update -p rustls:0.20.9 --precise "0.20.8"
3637
cargo update -p tokio:1.32.0 --precise "1.29.1"
3738
cargo update -p flate2:1.0.27 --precise "1.0.26"
3839
cargo update -p reqwest --precise "0.11.18"

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,15 @@ This library should compile with any combination of features with Rust 1.57.0.
6464

6565
To build with the MSRV you will need to pin dependencies as follows:
6666

67-
```
67+
```shell
6868
# log 0.4.19 has MSRV 1.60.0+
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"
7272
# rustls 0.21.2 has MSRV 1.60.0+
73-
cargo update -p rustls:0.21.6 --precise "0.21.1"
73+
cargo update -p rustls:0.21.7 --precise "0.21.1"
74+
# rustls 0.20.9 has MSRV 1.60.0+
75+
cargo update -p rustls:0.20.9 --precise "0.20.8"
7476
# tokio 1.30 has MSRV 1.63.0+
7577
cargo update -p tokio:1.32.0 --precise "1.29.1"
7678
# flate2 1.0.27 has MSRV 1.63.0+

0 commit comments

Comments
 (0)