We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 224cb99 commit ae66a01Copy full SHA for ae66a01
src/cargo/core/workspace.rs
@@ -159,7 +159,9 @@ impl<'cfg> Workspace<'cfg> {
159
ws.root_manifest = ws.find_root(manifest_path)?;
160
}
161
162
- ws.custom_metadata = ws.load_workspace_config()?.and_then(|cfg| cfg.custom_metadata);
+ ws.custom_metadata = ws
163
+ .load_workspace_config()?
164
+ .and_then(|cfg| cfg.custom_metadata);
165
ws.find_members()?;
166
ws.resolve_behavior = match ws.root_maybe() {
167
MaybePackage::Package(p) => p.manifest().resolve_behavior(),
0 commit comments