File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
test-crates/minimal-versions Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,11 @@ jobs:
5353 run : |
5454 rustup toolchain install ${{ matrix.rust }} --profile minimal --allow-downgrade
5555 rustup default ${{ matrix.rust }}
56- - name : Pin `zeroize` for MSRV
56+ - name : Pin dependencies for MSRV
5757 if : matrix.msrv
58- run :
58+ run : |
5959 cargo update -p zeroize --precise 1.6.0
60+ cargo update -p pretty_assertions --precise 1.4.0
6061 - name : Build
6162 run :
6263 cargo build --workspace ${{ matrix.features }}
@@ -107,10 +108,11 @@ jobs:
107108 run : |
108109 rustup toolchain install ${{ matrix.rust }} --target thumbv6m-none-eabi --profile minimal --allow-downgrade
109110 rustup default ${{ matrix.rust }}
110- - name : Pin `zeroize` for MSRV
111+ - name : Pin dependencies for MSRV
111112 if : matrix.msrv
112- run :
113+ run : |
113114 cargo update -p zeroize --precise 1.6.0
115+ cargo update -p pretty_assertions --precise 1.4.0
114116 - name : Build
115117 run :
116118 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"
55edition = " 2021"
66name = " minimal-versions"
77publish = false
8+ rust-version = " 1.57"
89version = " 0.0.0"
910
1011[features ]
You can’t perform that action at this time.
0 commit comments