Skip to content

cargo.lock: commit #504

cargo.lock: commit

cargo.lock: commit #504

GitHub Actions / clippy xen failed Feb 20, 2024 in 0s

clippy xen

1 error

Details

Results

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

Versions

  • rustc 1.76.0 (07dca489a 2024-02-04)
  • cargo 1.76.0 (c84b36747 2024-01-18)
  • clippy 0.1.76 (07dca48 2024-02-04)

Annotations

Check failure on line 44 in build.rs

See this annotation in the file changed.

@github-actions github-actions / clippy xen

`format!` in `println!` args

error: `format!` in `println!` args
  --> build.rs:41:5
   |
41 | /     println!(
42 | |         "{}",
43 | |         format!("cargo:rerun-if-changed={}", &out_path.display())
44 | |     );
   | |_____^
   |
   = help: combine the `format!(..)` arguments with the outer `println!(..)` call
   = help: or consider changing `format!` to `format_args!`
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#format_in_format_args
   = note: `-D clippy::format-in-format-args` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::format_in_format_args)]`