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 e165bc8 commit c3eab8dCopy full SHA for c3eab8d
src/cargo/core/workspace.rs
@@ -431,7 +431,7 @@ impl<'cfg> Workspace<'cfg> {
431
// but that's not quite right as it won't deal with overlaps.
432
let mut combined = from_config;
433
for (url, deps_from_manifest) in from_manifest {
434
- if let Some(deps_from_config) = combined.get_mut(&url) {
+ if let Some(deps_from_config) = combined.get_mut(url) {
435
// We want from_config to take precedence for each patched name.
436
// NOTE: This is inefficient if the number of patches is large!
437
let mut from_manifest_pruned = deps_from_manifest.clone();
0 commit comments