Skip to content

Commit

Permalink
Raise minimum toolchain for the backtrace feature to 1.60
Browse files Browse the repository at this point in the history
    error[E0658]: use of unstable library feature 'int_abs_diff'
       --> github.com-1ecc6299db9ec823/miniz_oxide-0.6.4/src/inflate/core.rs:824:54
        |
    824 |     if out_buf_size_mask == usize::MAX && source_pos.abs_diff(out_pos) == 1 && out_pos > source_pos {
        |                                                      ^^^^^^^^

    error[E0658]: use of unstable library feature 'int_abs_diff'
       --> github.com-1ecc6299db9ec823/miniz_oxide-0.6.4/src/inflate/core.rs:833:61
        |
    833 |     } else if out_buf_size_mask == usize::MAX && source_pos.abs_diff(out_pos) >= 4 && out_pos > source_pos {
        |                                                             ^^^^^^^^
  • Loading branch information
dtolnay committed Feb 2, 2023
1 parent 0a45d76 commit cf2adb4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.56.0]
rust: [nightly, beta, stable, 1.60.0]
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -53,8 +53,6 @@ jobs:
components: rust-src
- run: cargo check
- run: cargo check --no-default-features
- run: cargo check --features backtrace
if: matrix.rust != '1.39.0' && matrix.rust != '1.50.0'

windows:
name: Windows
Expand Down

0 comments on commit cf2adb4

Please sign in to comment.