Bump indicatif from 0.17.11 to 0.18.0 #528
Annotations
24 warnings
variables can be used directly in the `format!` string:
src/bin/cargo-flamegraph.rs#L411
warning: variables can be used directly in the `format!` string
--> src/bin/cargo-flamegraph.rs:411:17
|
411 | / eprintln!(
412 | | "automatically selected {} as it is the only valid target",
413 | | target
414 | | );
| |_________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
|
this expression creates a reference which is immediately dereferenced by the compiler:
src/bin/cargo-flamegraph.rs#L382
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> src/bin/cargo-flamegraph.rs:382:57
|
382 | if !t.kind.iter().any(|s| kind.contains(&s)) {
| ^^ help: change this to: `s`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
|
variables can be used directly in the `format!` string:
src/bin/cargo-flamegraph.rs#L269
warning: variables can be used directly in the `format!` string
--> src/bin/cargo-flamegraph.rs:269:9
|
269 | eprintln!("[profile.{}]", profile);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
269 - eprintln!("[profile.{}]", profile);
269 + eprintln!("[profile.{profile}]");
|
|
this expression creates a reference which is immediately dereferenced by the compiler:
src/bin/cargo-flamegraph.rs#L239
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> src/bin/cargo-flamegraph.rs:239:92
|
239 | a.target.name == *target && a.target.kind.iter().any(|k| kind.contains(&k))
| ^^ help: change this to: `k`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
= note: `#[warn(clippy::needless_borrow)]` on by default
|
variables can be used directly in the `format!` string:
src/bin/cargo-flamegraph.rs#L181
warning: variables can be used directly in the `format!` string
--> src/bin/cargo-flamegraph.rs:181:9
|
181 | println!("build command: {:?}", cmd);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
181 - println!("build command: {:?}", cmd);
181 + println!("build command: {cmd:?}");
|
|
variables can be used directly in the `format!` string:
src/lib.rs#L595
warning: variables can be used directly in the `format!` string
--> src/lib.rs:595:5
|
595 | println!("writing flamegraph to {:?}", flamegraph_filename);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
595 - println!("writing flamegraph to {:?}", flamegraph_filename);
595 + println!("writing flamegraph to {flamegraph_filename:?}");
|
|
variables can be used directly in the `format!` string:
src/lib.rs#L559
warning: variables can be used directly in the `format!` string
--> src/lib.rs:559:26
|
559 | .with_context(|| format!("unable to execute {:?}", command_vec))?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
559 - .with_context(|| format!("unable to execute {:?}", command_vec))?;
559 + .with_context(|| format!("unable to execute {command_vec:?}"))?;
|
|
variables can be used directly in the `format!` string:
src/lib.rs#L479
warning: variables can be used directly in the `format!` string
--> src/lib.rs:479:9
|
479 | println!("command {:?}", cmd);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
|
479 - println!("command {:?}", cmd);
479 + println!("command {cmd:?}");
|
|
build (macOS-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (macOS-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (macOS-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (macOS-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build (windows-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|