Skip to content

fix(deps): update module github.com/sirupsen/logrus to v1.9.3 #103

fix(deps): update module github.com/sirupsen/logrus to v1.9.3

fix(deps): update module github.com/sirupsen/logrus to v1.9.3 #103

GitHub Actions / clippy failed Aug 10, 2025 in 1s

clippy

1 error

Details

Results

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

Versions

  • rustc 1.88.0 (6b00bc388 2025-06-23)
  • cargo 1.88.0 (873a06493 2025-05-10)
  • clippy 0.1.88 (6b00bc3880 2025-06-23)

Annotations

Check failure on line 41 in src/errors.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

variables can be used directly in the `format!` string

error: variables can be used directly in the `format!` string
  --> src/errors.rs:41:17
   |
41 |                 write!(f, "{} must be {} bytes in length", n, l)
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
   = note: `-D clippy::uninlined-format-args` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::uninlined_format_args)]`
help: change this to
   |
41 -                 write!(f, "{} must be {} bytes in length", n, l)
41 +                 write!(f, "{n} must be {l} bytes in length")
   |