Skip to content
This repository was archived by the owner on Jan 16, 2023. It is now read-only.

Update tracing and fix Clippy warnings #107

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup override set ${{env.MSRV}}
- run: rustup override set 1.62
- run: rustup component add clippy
- uses: Swatinem/[email protected]
- run: cargo clippy --workspace -- --deny warnings --allow clippy::suspicious_else_formatting
- run: cargo clippy --workspace -- --deny warnings
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion conduit-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"
conduit = { version ="0.10.0", path = "../conduit" }
route-recognizer = "0.3"
thiserror = "1.0.37"
tracing = "0.1.36"
tracing = "0.1.37"

[dev-dependencies]
conduit-test = { version ="0.10.0", path = "../conduit-test" }
Expand Down
1 change: 0 additions & 1 deletion conduit-router/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![warn(rust_2018_idioms)]
#![allow(clippy::suspicious_else_formatting)]

#[macro_use]
extern crate tracing;
Expand Down