Skip to content

fix(deps): update rust crate pin-project to v1.1.7 (#1732) #1282

fix(deps): update rust crate pin-project to v1.1.7 (#1732)

fix(deps): update rust crate pin-project to v1.1.7 (#1732) #1282

GitHub Actions / clippy macos-latest succeeded Oct 24, 2024 in 0s

clippy macos-latest

1 warning

Details

Results

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

Versions

  • rustc 1.82.0 (f6e511eec 2024-10-15)
  • cargo 1.82.0 (8f40fc59f 2024-08-21)
  • clippy 0.1.82 (f6e511ee 2024-10-15)

Annotations

Check warning on line 155 in crates/shadowsocks-service/src/local/http/http_client.rs

See this annotation in the file changed.

@github-actions github-actions / clippy macos-latest

useless conversion to the same type: `local::http::http_client::HttpClientError`

warning: useless conversion to the same type: `local::http::http_client::HttpClientError`
   --> crates/shadowsocks-service/src/local/http/http_client.rs:155:40
    |
155 |                 Err(err) => return Err(err.into()),
    |                                        ^^^^^^^^^^ help: consider removing `.into()`: `err`
    |
    = 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