Skip to content

v0.2 improvements

v0.2 improvements #232

GitHub Actions / clippy succeeded Mar 14, 2025 in 0s

clippy

3 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 3
Note 0
Help 0

Versions

  • rustc 1.85.0 (4d91de4e4 2025-02-17)
  • cargo 1.85.0 (d73d2caf9 2024-12-31)
  • clippy 0.1.85 (4d91de4e48 2025-02-17)

Annotations

Check warning on line 39 in crates/cli/src/handler.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `response::Response`

warning: useless conversion to the same type: `response::Response`
  --> crates/cli/src/handler.rs:38:10
   |
38 |            }
   |   __________^
   |  |__________|
39 | ||         .map(Into::into)
   | ||________________________^
40 | |      }
   | |_____- help: consider removing
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
   = note: `#[warn(clippy::useless_conversion)]` on by default

Check warning on line 39 in crates/cli/src/handler.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `response::Response`

warning: useless conversion to the same type: `response::Response`
  --> crates/cli/src/handler.rs:38:10
   |
38 |            }
   |   __________^
   |  |__________|
39 | ||         .map(Into::into)
   | ||________________________^
40 | |      }
   | |_____- help: consider removing
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
   = note: `#[warn(clippy::useless_conversion)]` on by default

Check warning on line 23 in crates/cli/src/handler/dev.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `BANNER`

warning: unused import: `BANNER`
  --> crates/cli/src/handler/dev.rs:23:13
   |
23 |     Config, BANNER,
   |             ^^^^^^
   |
   = note: `#[warn(unused_imports)]` on by default