Skip to content

Commit

Permalink
Raise minimum tested version to 1.40
Browse files Browse the repository at this point in the history
1.39 is still supported but tracing-attributes in our test deps assumes 1.40.

    error[E0658]: use of unstable library feature 'option_flattening'
       --> tracing-attributes-0.1.10/src/lib.rs:933:10
        |
    933 |         .flatten();
        |          ^^^^^^^
        |
        = note: for more information, see rust-lang/rust#60258
  • Loading branch information
dtolnay committed Aug 11, 2020
1 parent c7a5652 commit 96475de
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [beta, stable, 1.39.0]
rust: [beta, stable, 1.40.0]
include:
- rust: nightly
rustflags: --cfg async_trait_nightly_testing
Expand All @@ -25,6 +25,14 @@ jobs:
env:
RUSTFLAGS: ${{matrix.rustflags}}

msrv:
name: Rust 1.39.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@1.39.0
- run: cargo check

clippy:
name: Clippy
runs-on: ubuntu-latest
Expand Down

0 comments on commit 96475de

Please sign in to comment.