Skip to content

fix(ci): update webpki-roots pinned version #344

fix(ci): update webpki-roots pinned version

fix(ci): update webpki-roots pinned version #344

GitHub Actions / Clippy Results failed Oct 9, 2025 in 0s

Clippy Results

3 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 3
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 232 in examples/example_cli/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

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

error: variables can be used directly in the `format!` string
   --> examples/example_cli/src/lib.rs:232:24
    |
232 |             unknown => bail!("unknown coin selection algorithm '{}'", unknown),
    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = 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
    |
232 -             unknown => bail!("unknown coin selection algorithm '{}'", unknown),
232 +             unknown => bail!("unknown coin selection algorithm '{unknown}'"),
    |

Check failure on line 719 in examples/example_cli/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

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

error: variables can be used directly in the `format!` string
   --> examples/example_cli/src/lib.rs:719:39
    |
719 |                     .map_err(|errors| anyhow::anyhow!("failed to sign PSBT {:?}", errors))?;
    |                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
    |
719 -                     .map_err(|errors| anyhow::anyhow!("failed to sign PSBT {:?}", errors))?;
719 +                     .map_err(|errors| anyhow::anyhow!("failed to sign PSBT {errors:?}"))?;
    |

Check failure on line 232 in examples/example_cli/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

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

error: variables can be used directly in the `format!` string
   --> examples/example_cli/src/lib.rs:232:24
    |
232 |             unknown => bail!("unknown coin selection algorithm '{}'", unknown),
    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = 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
    |
232 -             unknown => bail!("unknown coin selection algorithm '{}'", unknown),
232 +             unknown => bail!("unknown coin selection algorithm '{unknown}'"),
    |