File tree Expand file tree Collapse file tree 3 files changed +19
-52
lines changed Expand file tree Collapse file tree 3 files changed +19
-52
lines changed Original file line number Diff line number Diff line change 43
43
cargo update
44
44
- name : If Rust 1.75 pin dependencies
45
45
if : matrix.rust == '1.75.0'
46
- run : |
47
- cargo update -p home --precise "0.5.9"
48
- cargo update -p native-tls --precise "0.2.13"
49
- cargo update -p idna_adapter --precise "1.1.0"
46
+ run : ./ci/pin-msrv.sh
50
47
- name : Build
51
48
run : cargo build ${{ matrix.features }}
52
49
- name : Clippy
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -x
4
+ set -euo pipefail
5
+
6
+ # Pin dependencies for MSRV
7
+
8
+ # To pin deps, switch toolchain to MSRV and execute the below updates
9
+
10
+ # cargo clean
11
+ # rustup override set 1.75.0
12
+ # rm Cargo.lock
13
+ # cargo update
14
+
15
+ cargo update -p home --precise " 0.5.9"
16
+ cargo update -p native-tls --precise " 0.2.13"
17
+ cargo update -p idna_adapter --precise " 1.1.0"
18
+ cargo update -p minreq --precise " 2.13.2"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments