Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump clap from 3.2.25 to 4.4.12 #43

Closed
wants to merge 1 commit into from

Bump clap from 3.2.25 to 4.4.12

ee8ecf5
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

Bump clap from 3.2.25 to 4.4.12 #43

Bump clap from 3.2.25 to 4.4.12
ee8ecf5
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jan 3, 2024 in 0s

clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.75.0 (82e1608df 2023-12-21)
  • cargo 1.75.0 (1d8b05cdd 2023-11-20)
  • clippy 0.1.75 (82e1608 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