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 3c3919e commit 8e57542Copy full SHA for 8e57542
src/prepare.rs
@@ -165,7 +165,11 @@ fn run_command(cmd: Command) -> anyhow::Result<()> {
165
|| line.contains("error: cyclic package dependency: package ")
166
{
167
broken_deps = true;
168
- } else if line.contains("error: failed to parse lock file at") {
+ } else if line.contains("error: failed to parse lock file at")
169
+ || line.contains(
170
+ "error: Attempting to resolve a dependency with more than one crate with links=",
171
+ )
172
+ {
173
broken_lockfile = true;
174
}
175
};
0 commit comments