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

Triggered via pull request August 10, 2025 12:38
Status Failure
Total duration 19s
Artifacts

clippy.yml

on: pull_request
clippy_check
17s
clippy_check
Fit to window
Zoom out
Zoom in

Annotations

2 errors
variables can be used directly in the `format!` string: src/errors.rs#L41
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") |
clippy_check
Clippy had exited with the 101 exit code