File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 29
29
30
30
- name : Pin dependencies for MSRV
31
31
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"
33
33
- name : Build
34
34
run : cargo build ${{ matrix.features }}
35
35
- name : Test
Original file line number Diff line number Diff line change @@ -61,6 +61,8 @@ To build with the MSRV you will need to pin dependencies as follows:
61
61
```
62
62
# log 0.4.19 has MSRV 1.60.0+
63
63
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+
65
65
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"
66
68
```
You can’t perform that action at this time.
0 commit comments