Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/cargo/core/resolver/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ pub(super) fn activation_error(

msg.push_str("\n\nfailed to select a version for `");
msg.push_str(&*dep.package_name());
msg.push_str("` which could resolve this conflict");
msg.push_str("` which could resolve this conflict.");
msg.push_str("`\nTry running `cargo generate-lockfile` to generate the correct Cargo.lock");

return to_resolve_err(anyhow::format_err!("{}", msg));
}
Expand Down