Fix new unused patch warning.

This commit is contained in:
Eric Huss 2018-12-27 17:13:31 -08:00
parent fef78023a9
commit 7d112803c5
2 changed files with 45 additions and 1 deletions

View file

@ -340,7 +340,7 @@ pub fn resolve_with_previous<'cfg>(
warn,
)?;
resolved.register_used_patches(registry.patches());
if warn {
if register_patches {
// It would be good if this warning was more targeted and helpful
// (such as showing close candidates that failed to match). However,
// that's not terribly easy to do, so just show a general help

View file

@ -485,6 +485,50 @@ fn add_ignored_patch() {
.run();
}
#[test]
fn no_warn_ws_patch() {
Package::new("c", "0.1.0").publish();
// Don't issue an unused patch warning when the patch isn't used when
// partially building a workspace.
let p = project()
.file(
"Cargo.toml",
r#"
[workspace]
members = ["a", "b", "c"]
[patch.crates-io]
c = { path = "c" }
"#,
)
.file("a/Cargo.toml", &basic_manifest("a", "0.1.0"))
.file("a/src/lib.rs", "")
.file(
"b/Cargo.toml",
r#"
[package]
name = "b"
version = "0.1.0"
[dependencies]
c = "0.1.0"
"#,
)
.file("b/src/lib.rs", "")
.file("c/Cargo.toml", &basic_manifest("c", "0.1.0"))
.file("c/src/lib.rs", "")
.build();
p.cargo("build -p a")
.with_stderr(
"\
[UPDATING] [..]
[COMPILING] a [..]
[FINISHED] [..]",
)
.run();
}
#[test]
fn new_minor() {
Package::new("bar", "0.1.0").publish();