Skip to content

build: replace "std" flag dep in "miniscript" flag #116

build: replace "std" flag dep in "miniscript" flag

build: replace "std" flag dep in "miniscript" flag #116

Triggered via push September 24, 2025 07:54
Status Success
Total duration 15s
Artifacts

audit.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

1 error
variables can be used directly in the `format!` string: examples/example_cli/src/lib.rs#L719
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:?}"))?; |