Skip to content

Bump clap from 3.2.25 to 4.4.12 #46

Bump clap from 3.2.25 to 4.4.12

Bump clap from 3.2.25 to 4.4.12 #46

GitHub Actions / clippy succeeded Jan 3, 2024 in 1s

clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.76.0-beta.1 (0e09125c6 2023-12-21)
  • cargo 1.76.0-beta.1 (1a2666ddd 2023-12-17)
  • clippy 0.1.76 (0e09125 2023-12-21)

Annotations

Check warning on line 11 in src/proto/single/cmd.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

type parameter `W` goes unused in function definition

warning: type parameter `W` goes unused in function definition
  --> src/proto/single/cmd.rs:11:17
   |
11 | fn write_queues<W, S>(w: &mut dyn Write, queues: &[S]) -> Result<(), Error>
   |                 ^
   |
   = help: consider removing the parameter
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters
   = note: `#[warn(clippy::extra_unused_type_parameters)]` on by default

Check warning on line 19 in src/proto/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `self::single::Hi`

warning: unused import: `self::single::Hi`
  --> src/proto/mod.rs:19:9
   |
19 | pub use self::single::Hi;
   |         ^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(unused_imports)]` on by default