Skip to content

Commit ebfc65c

Browse files
committed
Accept alternative Cargo manifests.
1 parent 12db56c commit ebfc65c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/cargo/util/command_prelude.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,9 @@ pub trait ArgMatchesExt {
281281
// In general, we try to avoid normalizing paths in Cargo,
282282
// but in this particular case we need it to fix #3586.
283283
let path = paths::normalize_path(&path);
284-
if !path.ends_with("Cargo.toml") {
285-
anyhow::bail!("the manifest-path must be a path to a Cargo.toml file")
284+
match path.file_name().map(|name| name.to_str()).flatten() {
285+
Some(name) if name.starts_with("Cargo.") && name.ends_with(".toml") => {}
286+
_ => anyhow::bail!("the manifest-path must be a path to a Cargo.toml file"),
286287
}
287288
if !path.exists() {
288289
anyhow::bail!(

0 commit comments

Comments
 (0)