We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db74678 commit 14e9f15Copy full SHA for 14e9f15
.github/workflows/build.yml
@@ -94,7 +94,12 @@ jobs:
94
95
- uses: Swatinem/rust-cache@v2
96
97
- - run: cargo +"$MSRV" build --package multihash
+ # Only the multihash core crate is bound to the MSRV. Currently it's so old that the
98
+ # dependency resoluton doesn't quite work. Hence remove all other workspace members.
99
+ - name: Build
100
+ run: |
101
+ sed --in-place '/^members/d' Cargo.toml
102
+ cargo +"$MSRV" build --package multihash
103
104
coverage:
105
name: Code Coverage
0 commit comments