Skip to content

Commit 3c50f15

Browse files
authored
Merge pull request rust-lang#107 from JohnTitor/tracing-clippy-weird-relation
2 parents d8833cf + f0da1a7 commit 3c50f15

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- uses: actions/checkout@v3
50-
- run: rustup override set ${{env.MSRV}}
50+
- run: rustup override set 1.62
5151
- run: rustup component add clippy
5252
- uses: Swatinem/[email protected]
53-
- run: cargo clippy --workspace -- --deny warnings --allow clippy::suspicious_else_formatting
53+
- run: cargo clippy --workspace -- --deny warnings

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

conduit-router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ edition = "2018"
1111
conduit = { version ="0.10.0", path = "../conduit" }
1212
route-recognizer = "0.3"
1313
thiserror = "1.0.37"
14-
tracing = "0.1.36"
14+
tracing = "0.1.37"
1515

1616
[dev-dependencies]
1717
conduit-test = { version ="0.10.0", path = "../conduit-test" }

conduit-router/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![warn(rust_2018_idioms)]
2-
#![allow(clippy::suspicious_else_formatting)]
32

43
#[macro_use]
54
extern crate tracing;

0 commit comments

Comments
 (0)