Skip to content

Commit fd2b60e

Browse files
committed
Auto merge of #14221 - epage:implicit, r=weihanglo
fix: Ensure dep/feature activates the dependency on 2024 ### What does this PR try to resolve? Fixes #14016 ### How should we test and review this PR? This doesn't revert the last commit of #14018 so that it works properly on Editions 2021 and 2024. ### Additional information
2 parents edd8703 + 99fae91 commit fd2b60e

File tree

2 files changed

+104
-1
lines changed

2 files changed

+104
-1
lines changed

src/cargo/util/toml/mod.rs

+37-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ fn resolve_toml(
291291
dev_dependencies2: None,
292292
build_dependencies: None,
293293
build_dependencies2: None,
294-
features: original_toml.features.clone(),
294+
features: None,
295295
target: None,
296296
replace: original_toml.replace.clone(),
297297
patch: original_toml.patch.clone(),
@@ -322,6 +322,8 @@ fn resolve_toml(
322322
});
323323
resolved_toml.package = Some(resolved_package);
324324

325+
resolved_toml.features = resolve_features(original_toml.features.as_ref(), edition)?;
326+
325327
resolved_toml.lib = targets::resolve_lib(
326328
original_toml.lib.as_ref(),
327329
package_root,
@@ -686,6 +688,40 @@ fn default_readme_from_package_root(package_root: &Path) -> Option<String> {
686688
None
687689
}
688690

691+
#[tracing::instrument(skip_all)]
692+
fn resolve_features(
693+
original_features: Option<&BTreeMap<manifest::FeatureName, Vec<String>>>,
694+
edition: Edition,
695+
) -> CargoResult<Option<BTreeMap<manifest::FeatureName, Vec<String>>>> {
696+
let Some(mut resolved_features) = original_features.cloned() else {
697+
return Ok(None);
698+
};
699+
700+
if Edition::Edition2024 <= edition {
701+
for activations in resolved_features.values_mut() {
702+
let mut deps = Vec::new();
703+
for feature_value in activations.iter() {
704+
let feature_value = FeatureValue::new(InternedString::new(feature_value));
705+
let FeatureValue::DepFeature {
706+
dep_name,
707+
dep_feature: _,
708+
weak: false,
709+
} = feature_value
710+
else {
711+
continue;
712+
};
713+
let dep = FeatureValue::Dep { dep_name }.to_string();
714+
if !activations.contains(&dep) {
715+
deps.push(dep);
716+
}
717+
}
718+
activations.extend(deps);
719+
}
720+
}
721+
722+
Ok(Some(resolved_features))
723+
}
724+
689725
#[tracing::instrument(skip_all)]
690726
fn resolve_dependencies<'a>(
691727
gctx: &GlobalContext,

tests/testsuite/features.rs

+67
Original file line numberDiff line numberDiff line change
@@ -1847,6 +1847,73 @@ fn features_option_given_twice() {
18471847
p.cargo("check --features a --features b").run();
18481848
}
18491849

1850+
#[cargo_test(nightly, reason = "edition2024 is not stable")]
1851+
fn strong_dep_feature_edition2024() {
1852+
let p = project()
1853+
.file(
1854+
"Cargo.toml",
1855+
r#"
1856+
cargo-features = ["edition2024"]
1857+
[package]
1858+
name = "foo"
1859+
version = "0.1.0"
1860+
edition = "2024"
1861+
1862+
[features]
1863+
optional_dep = ["optional_dep/foo"]
1864+
1865+
[dependencies]
1866+
optional_dep = { path = "optional_dep", optional = true }
1867+
"#,
1868+
)
1869+
.file(
1870+
"src/main.rs",
1871+
r#"
1872+
fn main() {}
1873+
"#,
1874+
)
1875+
.file(
1876+
"optional_dep/Cargo.toml",
1877+
r#"
1878+
[package]
1879+
name = "optional_dep"
1880+
[features]
1881+
foo = []
1882+
"#,
1883+
)
1884+
.file(
1885+
"optional_dep/src/lib.rs",
1886+
r#"
1887+
"#,
1888+
)
1889+
.build();
1890+
1891+
p.cargo("metadata")
1892+
.masquerade_as_nightly_cargo(&["edition2024"])
1893+
.with_stdout_data(
1894+
str![[r#"
1895+
{
1896+
"metadata": null,
1897+
"packages": [
1898+
{
1899+
"features": {
1900+
"optional_dep": [
1901+
"optional_dep/foo",
1902+
"dep:optional_dep"
1903+
]
1904+
},
1905+
"name": "foo",
1906+
"...": "{...}"
1907+
}
1908+
],
1909+
"...": "{...}"
1910+
}
1911+
"#]]
1912+
.json(),
1913+
)
1914+
.run();
1915+
}
1916+
18501917
#[cargo_test]
18511918
fn multi_multi_features() {
18521919
let p = project()

0 commit comments

Comments
 (0)