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 5328ecc commit 5ebbe57Copy full SHA for 5ebbe57
src/prepare.rs
@@ -153,6 +153,7 @@ fn run_command(cmd: Command) -> anyhow::Result<()> {
153
yanked_deps = true;
154
} else if line.contains("failed to load source for dependency")
155
|| line.contains("no matching package named")
156
+ || line.contains("no matching package found")
157
{
158
missing_deps = true;
159
} else if line.contains("failed to parse manifest at")
tests/buildtest/mod.rs
@@ -282,7 +282,7 @@ test_prepare_error_stderr!(
282
"error: failed to parse lock file at"
283
);
284
285
-test_prepare_unknown_err!(
+test_prepare_error_stderr!(
286
test_missing_deps_typo,
287
"missing-deps-typo",
288
MissingDependencies,
0 commit comments