Skip to content

Release 0.20.0-rc.6 with wheel support + bumped deps #442

Release 0.20.0-rc.6 with wheel support + bumped deps

Release 0.20.0-rc.6 with wheel support + bumped deps #442

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / clippy succeeded Aug 25, 2023 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.73.0-beta.1 (680cdf816 2023-08-21)
  • cargo 1.73.0-beta.1 (80eca0e58 2023-08-19)
  • clippy 0.1.73 (680cdf8 2023-08-21)

Annotations

Check warning on line 212 in src/key.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

taken reference of right operand

warning: taken reference of right operand
   --> src/key.rs:212:9
    |
212 |         String::new() + &self + rhs
    |         ^^^^^^^^^^^^^^^^-----
    |                         |
    |                         help: use the right value directly: `self`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#op_ref
    = note: `#[warn(clippy::op_ref)]` on by default

Check warning on line 810 in src/session.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

deref which would be done by auto-deref

warning: deref which would be done by auto-deref
   --> src/session.rs:810:55
    |
810 |                 let body = match serde_json::from_str(&*body)? {
    |                                                       ^^^^^^ help: try: `&body`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
    = note: `#[warn(clippy::explicit_auto_deref)]` on by default

Check warning on line 745 in src/session.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the borrowed expression implements the required traits

warning: the borrowed expression implements the required traits
   --> src/session.rs:741:70
    |
741 |                       base64::engine::general_purpose::STANDARD.encode(&format!(
    |  ______________________________________________________________________^
742 | |                         "{}:{}",
743 | |                         url.username(),
744 | |                         url.password().unwrap_or("")
745 | |                     ))
    | |_____________________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
    = note: `#[warn(clippy::needless_borrow)]` on by default
help: change this to
    |
741 ~                     base64::engine::general_purpose::STANDARD.encode(format!(
742 +                         "{}:{}",
743 +                         url.username(),
744 +                         url.password().unwrap_or("")
745 ~                     ))
    |