Tell about updating Cargo.toml

This commit is contained in:
mo8it 2024-04-16 03:35:23 +02:00
parent aa813fbce1
commit 6566c5904f

View file

@ -9,8 +9,9 @@ pub fn check(info_file: InfoFile) -> Result<()> {
fs::write("Cargo.toml", cargo_toml(&info_file.exercises)) fs::write("Cargo.toml", cargo_toml(&info_file.exercises))
.context("Failed to update the file `Cargo.toml`")?; .context("Failed to update the file `Cargo.toml`")?;
println!("Updated `Cargo.toml`");
println!("Everything looks fine!"); println!("\nEverything looks fine!");
Ok(()) Ok(())
} }