Skip to content

Commit da07061

Browse files
committed
Remove format!
1 parent 06ed7a4 commit da07061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/core/compiler/timings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ impl<'a, 'cfg> Timings<'a, 'cfg> {
9595
(pkg_desc, targets)
9696
})
9797
.collect();
98-
let start_str = format!("{}", humantime::format_rfc3339_seconds(SystemTime::now()));
98+
let start_str = humantime::format_rfc3339_seconds(SystemTime::now()).to_string();
9999
let has_report = |what| {
100100
bcx.config
101101
.cli_unstable()

0 commit comments

Comments
 (0)