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 4a1b517 commit 225560cCopy full SHA for 225560c
src/main.rs
@@ -1045,7 +1045,7 @@ impl<'a> Input<'a> {
1045
digest.truncate(consts::ID_DIGEST_LEN_MAX);
1046
1047
let mut id = OsString::new();
1048
- id.push(&*digest );
+ id.push(&*digest);
1049
Ok(id)
1050
}
1051
Expr(content, template) => {
@@ -1144,10 +1144,7 @@ fn cargo(
1144
cmd.arg("--color").arg("always");
1145
1146
1147
- let cargo_target_dir = format!(
1148
- "{}",
1149
- platform::binary_cache_path()?.display(),
1150
- );
+ let cargo_target_dir = format!("{}", platform::binary_cache_path()?.display(),);
1151
cmd.env("CARGO_TARGET_DIR", cargo_target_dir);
1152
1153
// Block `--release` on `bench`.
0 commit comments