We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abb80b9 commit 51908bdCopy full SHA for 51908bd
.github/workflows/ci.yml
@@ -49,16 +49,12 @@ jobs:
49
50
msrv:
51
runs-on: ubuntu-latest
52
- strategy:
53
- matrix:
54
- # When updating this, the reminder to update the minimum supported
55
- # Rust version in Cargo.toml.
56
- rust: ['1.61']
57
steps:
58
- uses: actions/checkout@v4
59
- - name: Install Rust
60
- run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
61
- - run: cargo build
+ - name: Install cargo-hack
+ uses: taiki-e/install-action@cargo-hack
+ # memchr feature can have a higher MSRV.
+ - run: cargo hack build --feature-powerset --skip memchr --rust-version
62
63
clippy:
64
0 commit comments