59
59
//! over the place.
60
60
61
61
use std:: collections:: { BTreeMap , HashMap , HashSet } ;
62
- use std:: mem;
63
62
use std:: rc:: Rc ;
64
63
use std:: time:: { Duration , Instant } ;
65
64
@@ -757,22 +756,8 @@ impl RemainingCandidates {
757
756
) -> Option < ( Summary , bool ) > {
758
757
for b in self . remaining . iter ( ) {
759
758
let b_id = b. package_id ( ) ;
760
- // The `links` key in the manifest dictates that there's only one
761
- // package in a dependency graph, globally, with that particular
762
- // `links` key. If this candidate links to something that's already
763
- // linked to by a different package then we've gotta skip this.
764
- if let Some ( link) = b. links ( ) {
765
- if let Some ( & a) = cx. links . get ( & link) {
766
- if a != b_id {
767
- conflicting_prev_active
768
- . entry ( a)
769
- . or_insert_with ( || ConflictReason :: Links ( link) ) ;
770
- continue ;
771
- }
772
- }
773
- }
774
759
775
- // Otherwise the condition for being a valid candidate relies on
760
+ // The condition for being a valid candidate relies on
776
761
// semver. Cargo dictates that you can't duplicate multiple
777
762
// semver-compatible versions of a crate. For example we can't
778
763
// simultaneously activate `foo 1.0.2` and `foo 1.2.0`. We can,
@@ -789,12 +774,27 @@ impl RemainingCandidates {
789
774
}
790
775
}
791
776
777
+ // Otherwise the `links` key in the manifest dictates that there's only one
778
+ // package in a dependency graph, globally, with that particular
779
+ // `links` key. If this candidate links to something that's already
780
+ // linked to by a different package then we've gotta skip this.
781
+ if let Some ( link) = b. links ( ) {
782
+ if let Some ( & a) = cx. links . get ( & link) {
783
+ if a != b_id {
784
+ conflicting_prev_active
785
+ . entry ( a)
786
+ . or_insert_with ( || ConflictReason :: Links ( link) ) ;
787
+ continue ;
788
+ }
789
+ }
790
+ }
791
+
792
792
// Well if we made it this far then we've got a valid dependency. We
793
793
// want this iterator to be inherently "peekable" so we don't
794
794
// necessarily return the item just yet. Instead we stash it away to
795
795
// get returned later, and if we replaced something then that was
796
796
// actually the candidate to try first so we return that.
797
- if let Some ( r) = mem :: replace ( & mut self . has_another , Some ( b. clone ( ) ) ) {
797
+ if let Some ( r) = self . has_another . replace ( b. clone ( ) ) {
798
798
return Some ( ( r, true ) ) ;
799
799
}
800
800
}
0 commit comments