Skip to content

Commit bb1472e

Browse files
committed
Auto merge of #3843 - alexcrichton:fix-override-default-features, r=matklad
Fix overriding mixing with default features Previously Cargo had a bug where if a crate *without* a default feature was overridden with one that did indeed have a default feature then the default may not end up getting activated by accident. The fix was to avoid returning too quickly hen activating dependencies until after we've inspected and learned about replacements. Closes #3812
2 parents c995e9e + 2d4cb3e commit bb1472e

File tree

2 files changed

+63
-4
lines changed

2 files changed

+63
-4
lines changed

src/cargo/core/resolver/mod.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -316,22 +316,23 @@ fn activate(cx: &mut Context,
316316
candidate.summary.package_id().clone());
317317
}
318318

319-
if cx.flag_activated(&candidate.summary, method) {
320-
return Ok(None);
321-
}
319+
let activated = cx.flag_activated(&candidate.summary, method);
322320

323321
let candidate = match candidate.replace {
324322
Some(replace) => {
325323
cx.resolve_replacements.insert(candidate.summary.package_id().clone(),
326324
replace.package_id().clone());
327-
if cx.flag_activated(&replace, method) {
325+
if cx.flag_activated(&replace, method) && activated {
328326
return Ok(None);
329327
}
330328
trace!("activating {} (replacing {})", replace.package_id(),
331329
candidate.summary.package_id());
332330
replace
333331
}
334332
None => {
333+
if activated {
334+
return Ok(None)
335+
}
335336
trace!("activating {}", candidate.summary.package_id());
336337
candidate.summary
337338
}

tests/overrides.rs

+58
Original file line numberDiff line numberDiff line change
@@ -1104,3 +1104,61 @@ warning: path override for crate `foo` has altered the original list of
11041104
dependencies; the dependency on `bar` was either added or\
11051105
"));
11061106
}
1107+
1108+
#[test]
1109+
fn override_with_default_feature() {
1110+
Package::new("another", "0.1.0").publish();
1111+
Package::new("another", "0.1.1")
1112+
.dep("bar", "0.1")
1113+
.publish();
1114+
Package::new("bar", "0.1.0").publish();
1115+
1116+
let p = project("local")
1117+
.file("Cargo.toml", r#"
1118+
[package]
1119+
name = "local"
1120+
version = "0.0.1"
1121+
authors = []
1122+
1123+
[dependencies]
1124+
bar = { path = "bar", default-features = false }
1125+
another = "0.1"
1126+
another2 = { path = "another2" }
1127+
1128+
[replace]
1129+
'bar:0.1.0' = { path = "bar" }
1130+
"#)
1131+
.file("src/main.rs", r#"
1132+
extern crate bar;
1133+
1134+
fn main() {
1135+
bar::bar();
1136+
}
1137+
"#)
1138+
.file("bar/Cargo.toml", r#"
1139+
[package]
1140+
name = "bar"
1141+
version = "0.1.0"
1142+
authors = []
1143+
1144+
[features]
1145+
default = []
1146+
"#)
1147+
.file("bar/src/lib.rs", r#"
1148+
#[cfg(feature = "default")]
1149+
pub fn bar() {}
1150+
"#)
1151+
.file("another2/Cargo.toml", r#"
1152+
[package]
1153+
name = "another2"
1154+
version = "0.1.0"
1155+
authors = []
1156+
1157+
[dependencies]
1158+
bar = { version = "0.1", default-features = false }
1159+
"#)
1160+
.file("another2/src/lib.rs", "");
1161+
1162+
assert_that(p.cargo_process("run"),
1163+
execs().with_status(0));
1164+
}

0 commit comments

Comments
 (0)