Skip to content

Commit

Permalink
Auto merge of #14366 - weihanglo:beta-1.81-backport, r=epage
Browse files Browse the repository at this point in the history
[beta-1.81] Revert "fix: Ensure dep/feature activates the dependency on 2024"

Beta backports

* #14295

In order to make CI pass, the following PRs are also cherry-picked:

* Ignore `build_std::basic` test
* 830db6f (#14341)
  • Loading branch information
bors committed Aug 14, 2024
2 parents f58aa3b + 017ce90 commit 2d826af
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 46 deletions.
27 changes: 2 additions & 25 deletions src/cargo/util/toml/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ fn resolve_toml(
});
resolved_toml.package = Some(resolved_package);

resolved_toml.features = resolve_features(original_toml.features.as_ref(), edition)?;
resolved_toml.features = resolve_features(original_toml.features.as_ref())?;

resolved_toml.lib = targets::resolve_lib(
original_toml.lib.as_ref(),
Expand Down Expand Up @@ -691,34 +691,11 @@ fn default_readme_from_package_root(package_root: &Path) -> Option<String> {
#[tracing::instrument(skip_all)]
fn resolve_features(
original_features: Option<&BTreeMap<manifest::FeatureName, Vec<String>>>,
edition: Edition,
) -> CargoResult<Option<BTreeMap<manifest::FeatureName, Vec<String>>>> {
let Some(mut resolved_features) = original_features.cloned() else {
let Some(resolved_features) = original_features.cloned() else {
return Ok(None);
};

if Edition::Edition2024 <= edition {
for activations in resolved_features.values_mut() {
let mut deps = Vec::new();
for feature_value in activations.iter() {
let feature_value = FeatureValue::new(InternedString::new(feature_value));
let FeatureValue::DepFeature {
dep_name,
dep_feature: _,
weak: false,
} = feature_value
else {
continue;
};
let dep = FeatureValue::Dep { dep_name }.to_string();
if !activations.contains(&dep) {
deps.push(dep);
}
}
activations.extend(deps);
}
}

Ok(Some(resolved_features))
}

Expand Down
32 changes: 11 additions & 21 deletions tests/testsuite/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1890,27 +1890,17 @@ fn strong_dep_feature_edition2024() {

p.cargo("metadata")
.masquerade_as_nightly_cargo(&["edition2024"])
.with_stdout_data(
str![[r#"
{
"metadata": null,
"packages": [
{
"features": {
"optional_dep": [
"optional_dep/foo",
"dep:optional_dep"
]
},
"name": "foo",
"...": "{...}"
}
],
"...": "{...}"
}
"#]]
.json(),
)
.with_status(101)
.with_stderr_data(str![[r#"
[ERROR] feature `optional_dep` includes `optional_dep/foo`, but `optional_dep` is not a dependency
--> Cargo.toml:9:32
|
9 | optional_dep = ["optional_dep/foo"]
| ^^^^^^^^^^^^^^^^^^^^
|
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
"#]])
.run();
}

Expand Down

0 comments on commit 2d826af

Please sign in to comment.