1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-14 22:30:34 +02:00

Improve readability

This commit is contained in:
mo8it 2024-08-20 13:56:52 +02:00
parent 5b7368c46d
commit 13cc3acdfd

View File

@ -74,12 +74,14 @@ impl CmdRunner {
bail!("The command `cargo metadata …` failed. Are you in the `rustlings/` directory?");
}
let target_dir = serde_json::de::from_slice::<CargoMetadata>(&metadata_output.stdout)
let metadata: CargoMetadata = serde_json::de::from_slice(&metadata_output.stdout)
.context(
"Failed to read the field `target_directory` from the output of the command `cargo metadata …`",
)?.target_directory;
)?;
Ok(Self { target_dir })
Ok(Self {
target_dir: metadata.target_directory,
})
}
pub fn cargo<'out>(