Skip to content

New CI

New CI #1

GitHub Actions / clippy succeeded Jan 19, 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.76.0-beta.5 (f732c37b4 2024-01-12)
  • cargo 1.76.0-beta.5 (ddec30889 2024-01-02)
  • clippy 0.1.76 (f732c37 2024-01-12)

Annotations

Check warning on line 26 in ibverbs-sys/build.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
  --> ibverbs-sys/build.rs:26:15
   |
26 |         .args(&["build.sh"])
   |               ^^^^^^^^^^^^^ help: change this to: `["build.sh"]`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args

Check warning on line 13 in ibverbs-sys/build.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
  --> ibverbs-sys/build.rs:13:19
   |
13 |             .args(&["submodule", "update", "--init"])
   |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `["submodule", "update", "--init"]`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
   = note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default