pub fn parse_workspace_dependencies(
workspace_toml: &Path,
) -> Result<HashMap<String, String>, String>Expand description
Parse the workspace root Cargo.toml and return a map of name → version for
all entries under [workspace.dependencies].
Only entries that specify a version field are included (path/git workspace
deps without versions are omitted).