File tree 2 files changed +7
-4
lines changed
test-crates/minimal-versions
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,11 @@ jobs:
53
53
run : |
54
54
rustup toolchain install ${{ matrix.rust }} --profile minimal --allow-downgrade
55
55
rustup default ${{ matrix.rust }}
56
- - name : Pin `zeroize` for MSRV
56
+ - name : Pin dependencies for MSRV
57
57
if : matrix.msrv
58
- run :
58
+ run : |
59
59
cargo update -p zeroize --precise 1.6.0
60
+ cargo update -p pretty_assertions --precise 1.4.0
60
61
- name : Build
61
62
run :
62
63
cargo build --workspace ${{ matrix.features }}
@@ -107,10 +108,11 @@ jobs:
107
108
run : |
108
109
rustup toolchain install ${{ matrix.rust }} --target thumbv6m-none-eabi --profile minimal --allow-downgrade
109
110
rustup default ${{ matrix.rust }}
110
- - name : Pin `zeroize` for MSRV
111
+ - name : Pin dependencies for MSRV
111
112
if : matrix.msrv
112
- run :
113
+ run : |
113
114
cargo update -p zeroize --precise 1.6.0
115
+ cargo update -p pretty_assertions --precise 1.4.0
114
116
- name : Build
115
117
run :
116
118
cargo build --target thumbv6m-none-eabi ${{ matrix.features }} -p ensure-no-std
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ resolver = "2"
5
5
edition = " 2021"
6
6
name = " minimal-versions"
7
7
publish = false
8
+ rust-version = " 1.57"
8
9
version = " 0.0.0"
9
10
10
11
[features ]
You can’t perform that action at this time.
0 commit comments