Fix bad formating

master
Mason Stallmo 7 years ago
parent b82fa7db65
commit 78117ef4a1
  1. 3
      src/manifest/mod.rs

@ -82,7 +82,8 @@ fn read_cargo_toml(path: &Path) -> Result<CargoManifest, Error> {
return Error::crate_config(&format!( return Error::crate_config(&format!(
"Crate directory is missing a `Cargo.toml` file; is `{}` the wrong directory?", "Crate directory is missing a `Cargo.toml` file; is `{}` the wrong directory?",
path.display() path.display()
)).map(|_| unreachable!()); ))
.map(|_| unreachable!());
} }
let mut cargo_file = File::open(manifest_path)?; let mut cargo_file = File::open(manifest_path)?;
let mut cargo_contents = String::new(); let mut cargo_contents = String::new();

Loading…
Cancel
Save