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
let resolver = edition.default_resolve_behavior().to_manifest();
1006
-
self.config.shell().warn(
1007
-
format_args!("\
1008
-
some crates are on edition {edition} which defaults to `resolver = \"{resolver}\"`,\n\
1009
-
\x20 but virtual workspaces default to `resolver = \"1\"`\n\
1010
-
\x20 specify the desired resolver version explicitly in the workspace root's manifest\
1011
-
",
1012
-
))?;
1006
+
self.config.shell().warn(format_args!("some crates are on edition {edition} which defaults to `resolver = \"{resolver}\"`, but virtual workspaces default to `resolver = \"1\"`"))?;
1013
1007
self.config.shell().note(
1014
-
"to keep the current resolver, specify `workspace.resolver = \"1\"`",
1008
+
"to keep the current resolver, specify `workspace.resolver = \"1\"` in the workspace root's manifest",
1015
1009
)?;
1016
-
self.config.shell().note(format_args!("to use the edition {edition} resolver, specify `workspace.resolver = \"{resolver}\"`"))?;
1010
+
self.config.shell().note(format_args!("to use the edition {edition} resolver, specify `workspace.resolver = \"{resolver}\"` in the workspace root's manifest"))?;
0 commit comments