Skip to content

Commit 1da3b30

Browse files
ci: Pin rustls to keep the MSRV
1 parent 792b39f commit 1da3b30

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/cont_integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: Swatinem/[email protected]
3030
- name: Pin dependencies for MSRV
3131
if: matrix.rust.version == '1.57.0'
32-
run: cargo update -p log --precise "0.4.18" && cargo update -p tempfile --precise "3.6.0"
32+
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"
3333
- name: Build
3434
run: cargo build ${{ matrix.features }}
3535
- name: Test

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ To build with the MSRV you will need to pin dependencies as follows:
6161
```
6262
# log 0.4.19 has MSRV 1.60.0+
6363
cargo update -p log --precise "0.4.18"
64-
# tempfile 3.7.0 has MSRV 1.63.0
64+
# tempfile 3.7.0 has MSRV 1.63.0+
6565
cargo update -p tempfile --precise "3.6.0"
66+
# rustls 0.21.2 has MSRV 1.60.0+
67+
cargo update -p rustls:0.21.6 --precise "0.21.1"
6668
```

0 commit comments

Comments
 (0)