File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -124,9 +124,9 @@ pub(super) fn activation_error(
124
124
msg. push_str ( "\n \n the package `" ) ;
125
125
msg. push_str ( & * dep. package_name ( ) ) ;
126
126
msg. push_str ( "` links to the native library `" ) ;
127
- msg. push_str ( & link) ;
127
+ msg. push_str ( link) ;
128
128
msg. push_str ( "`, but it conflicts with a previous package which links to `" ) ;
129
- msg. push_str ( & link) ;
129
+ msg. push_str ( link) ;
130
130
msg. push_str ( "` as well:\n " ) ;
131
131
msg. push_str ( & describe_path ( & cx. parents . path_to_bottom ( p) ) ) ;
132
132
}
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ fn add_pkg(
305
305
} ;
306
306
let node = Node :: Package {
307
307
package_id,
308
- features : node_features. clone ( ) ,
308
+ features : node_features,
309
309
kind : node_kind,
310
310
} ;
311
311
if let Some ( idx) = graph. index . get ( & node) {
You can’t perform that action at this time.
0 commit comments