You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
members = ["pkg_default", "pkg_df_true", "pkg_df_false"]
2733
+
resolver = "2"
2734
+
2735
+
[workspace.dependencies]
2736
+
dep_simple = "0.1.0"
2737
+
dep_df_true = { version = "0.1.0", default-features = true }
2738
+
dep_df_false = { version = "0.1.0", default-features = false }
2739
+
"#,
2740
+
)
2741
+
.file("pkg_default/Cargo.toml", pkg_default)
2742
+
.file("pkg_default/src/lib.rs","")
2743
+
.file("pkg_df_true/Cargo.toml", pkg_df_true)
2744
+
.file("pkg_df_true/src/lib.rs","")
2745
+
.file("pkg_df_false/Cargo.toml", pkg_df_false)
2746
+
.file("pkg_df_false/src/lib.rs","")
2747
+
.build();
2748
+
2749
+
p.cargo("fix --all --edition --allow-no-vcs")
2750
+
.masquerade_as_nightly_cargo(&["edition2024"])
2751
+
.with_stderr_unordered(
2752
+
"\
2753
+
[MIGRATING] pkg_default/Cargo.toml from 2021 edition to 2024
2754
+
[MIGRATING] pkg_df_true/Cargo.toml from 2021 edition to 2024
2755
+
[MIGRATING] pkg_df_false/Cargo.toml from 2021 edition to 2024
2756
+
[WARNING] [CWD]/pkg_df_false/Cargo.toml: `default-features` is ignored for dep_df_true, since `default-features` was true for `workspace.dependencies.dep_df_true`, this could become a hard error in the future
2757
+
[WARNING] [CWD]/pkg_df_false/Cargo.toml: `default-features` is ignored for dep_simple, since `default-features` was not specified for `workspace.dependencies.dep_simple`, this could become a hard error in the future
2758
+
[WARNING] [CWD]/pkg_df_false/Cargo.toml: `default-features` is ignored for dep_df_true, since `default-features` was true for `workspace.dependencies.dep_df_true`, this could become a hard error in the future
2759
+
[WARNING] [CWD]/pkg_df_false/Cargo.toml: `default-features` is ignored for dep_simple, since `default-features` was not specified for `workspace.dependencies.dep_simple`, this could become a hard error in the future
2760
+
[WARNING] [CWD]/pkg_df_false/Cargo.toml: `default-features` is ignored for dep_df_true, since `default-features` was true for `workspace.dependencies.dep_df_true`, this could become a hard error in the future
2761
+
[WARNING] [CWD]/pkg_df_false/Cargo.toml: `default-features` is ignored for dep_simple, since `default-features` was not specified for `workspace.dependencies.dep_simple`, this could become a hard error in the future
2762
+
[UPDATING] `dummy-registry` index
2763
+
[LOCKING] 6 packages to latest compatible versions
0 commit comments