Skip to content

Commit

Permalink
bump MSRV to 1.79
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed Jul 8, 2024
1 parent 5a9a915 commit 5b03038
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["stable", "nightly", "1.76"] # MSRV
rust: ["stable", "nightly", "1.79"] # MSRV
flags: ["", "--all-features"]
steps:
- uses: actions/checkout@v3
Expand All @@ -28,10 +28,10 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# Only run tests on latest stable and above
- name: build
if: ${{ matrix.rust == '1.76' }} # MSRV
if: ${{ matrix.rust == '1.79' }} # MSRV
run: cargo build --workspace ${{ matrix.flags }}
- name: test
if: ${{ matrix.rust != '1.76' }} # MSRV
if: ${{ matrix.rust != '1.79' }} # MSRV
run: cargo test --workspace ${{ matrix.flags }}
feature-checks:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.76"
msrv = "1.79"

0 comments on commit 5b03038

Please sign in to comment.