Skip to content

Commit 96475de

Browse files
committed
Raise minimum tested version to 1.40
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
1 parent c7a5652 commit 96475de

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ci.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
rust: [beta, stable, 1.39.0]
15+
rust: [beta, stable, 1.40.0]
1616
include:
1717
- rust: nightly
1818
rustflags: --cfg async_trait_nightly_testing
@@ -25,6 +25,14 @@ jobs:
2525
env:
2626
RUSTFLAGS: ${{matrix.rustflags}}
2727

28+
msrv:
29+
name: Rust 1.39.0
30+
runs-on: ubuntu-latest
31+
steps:
32+
- uses: actions/checkout@v2
33+
- uses: dtolnay/[email protected]
34+
- run: cargo check
35+
2836
clippy:
2937
name: Clippy
3038
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)