Skip to content

Commit ca330a2

Browse files
committed
Auto merge of #14295 - epage:revert, r=weihanglo
Revert "fix: Ensure dep/feature activates the dependency on 2024" ### What does this PR try to resolve? Fixes #14283 by re-opening #14016 so we don't block people testing other Edition 2024 changes. ### How should we test and review this PR? This reverts commit 99fae91. I initially held off on reverting in case we quickly had a clear direction to go. Since we're still doing some investigation, I decided to move forward with this. ### Additional information
2 parents 7f20798 + 407a32c commit ca330a2

File tree

2 files changed

+13
-46
lines changed

2 files changed

+13
-46
lines changed

src/cargo/util/toml/mod.rs

+2-25
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ fn resolve_toml(
324324
});
325325
resolved_toml.package = Some(resolved_package);
326326

327-
resolved_toml.features = resolve_features(original_toml.features.as_ref(), edition)?;
327+
resolved_toml.features = resolve_features(original_toml.features.as_ref())?;
328328

329329
resolved_toml.lib = targets::resolve_lib(
330330
original_toml.lib.as_ref(),
@@ -693,34 +693,11 @@ fn default_readme_from_package_root(package_root: &Path) -> Option<String> {
693693
#[tracing::instrument(skip_all)]
694694
fn resolve_features(
695695
original_features: Option<&BTreeMap<manifest::FeatureName, Vec<String>>>,
696-
edition: Edition,
697696
) -> CargoResult<Option<BTreeMap<manifest::FeatureName, Vec<String>>>> {
698-
let Some(mut resolved_features) = original_features.cloned() else {
697+
let Some(resolved_features) = original_features.cloned() else {
699698
return Ok(None);
700699
};
701700

702-
if Edition::Edition2024 <= edition {
703-
for activations in resolved_features.values_mut() {
704-
let mut deps = Vec::new();
705-
for feature_value in activations.iter() {
706-
let feature_value = FeatureValue::new(InternedString::new(feature_value));
707-
let FeatureValue::DepFeature {
708-
dep_name,
709-
dep_feature: _,
710-
weak: false,
711-
} = feature_value
712-
else {
713-
continue;
714-
};
715-
let dep = FeatureValue::Dep { dep_name }.to_string();
716-
if !activations.contains(&dep) {
717-
deps.push(dep);
718-
}
719-
}
720-
activations.extend(deps);
721-
}
722-
}
723-
724701
Ok(Some(resolved_features))
725702
}
726703

tests/testsuite/features.rs

+11-21
Original file line numberDiff line numberDiff line change
@@ -1889,27 +1889,17 @@ fn strong_dep_feature_edition2024() {
18891889

18901890
p.cargo("metadata")
18911891
.masquerade_as_nightly_cargo(&["edition2024"])
1892-
.with_stdout_data(
1893-
str![[r#"
1894-
{
1895-
"metadata": null,
1896-
"packages": [
1897-
{
1898-
"features": {
1899-
"optional_dep": [
1900-
"optional_dep/foo",
1901-
"dep:optional_dep"
1902-
]
1903-
},
1904-
"name": "foo",
1905-
"...": "{...}"
1906-
}
1907-
],
1908-
"...": "{...}"
1909-
}
1910-
"#]]
1911-
.json(),
1912-
)
1892+
.with_status(101)
1893+
.with_stderr_data(str![[r#"
1894+
[ERROR] feature `optional_dep` includes `optional_dep/foo`, but `optional_dep` is not a dependency
1895+
--> Cargo.toml:9:32
1896+
|
1897+
9 | optional_dep = ["optional_dep/foo"]
1898+
| ^^^^^^^^^^^^^^^^^^^^
1899+
|
1900+
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
1901+
1902+
"#]])
19131903
.run();
19141904
}
19151905

0 commit comments

Comments
 (0)