We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99176ca commit 1906d27Copy full SHA for 1906d27
src/cargo/core/compiler/job_queue/mod.rs
@@ -806,10 +806,7 @@ impl<'cfg> DrainState<'cfg> {
806
// `display_error` inside `handle_error`.
807
Some(anyhow::Error::new(AlreadyPrintedError::new(error)))
808
} else if self.queue.is_empty() && self.pending_queue.is_empty() {
809
- let message = format!(
810
- "{} [{}] target(s) in {}",
811
- profile_name, opt_type, time_elapsed
812
- );
+ let message = format!("{profile_name} [{opt_type}] target(s) in {time_elapsed}",);
813
if !cx.bcx.build_config.build_plan {
814
// It doesn't really matter if this fails.
815
let _ = cx.bcx.config.shell().status("Finished", message);
0 commit comments