@@ -184,15 +184,14 @@ fn print_lockfile_generation(
184
184
resolve : & Resolve ,
185
185
registry : & mut PackageRegistry < ' _ > ,
186
186
) -> CargoResult < ( ) > {
187
- let mut shell = gctx. shell ( ) ;
188
-
189
187
let diff = PackageDiff :: new ( & resolve) ;
190
188
let num_pkgs: usize = diff. iter ( ) . map ( |d| d. added . len ( ) ) . sum ( ) ;
191
189
if num_pkgs <= 1 {
192
190
// just ourself, nothing worth reporting
193
191
return Ok ( ( ) ) ;
194
192
}
195
- shell. status ( "Locking" , format ! ( "{num_pkgs} packages" ) ) ?;
193
+ gctx. shell ( )
194
+ . status ( "Locking" , format ! ( "{num_pkgs} packages" ) ) ?;
196
195
197
196
for diff in diff {
198
197
fn format_latest ( version : semver:: Version ) -> String {
@@ -226,7 +225,11 @@ fn print_lockfile_generation(
226
225
} ;
227
226
228
227
if let Some ( latest) = latest {
229
- shell. status_with_color ( "Adding" , format ! ( "{package}{latest}" ) , & style:: NOTE ) ?;
228
+ gctx. shell ( ) . status_with_color (
229
+ "Adding" ,
230
+ format ! ( "{package}{latest}" ) ,
231
+ & style:: NOTE ,
232
+ ) ?;
230
233
}
231
234
}
232
235
}
@@ -240,15 +243,14 @@ fn print_lockfile_sync(
240
243
resolve : & Resolve ,
241
244
registry : & mut PackageRegistry < ' _ > ,
242
245
) -> CargoResult < ( ) > {
243
- let mut shell = gctx. shell ( ) ;
244
-
245
246
let diff = PackageDiff :: diff ( & previous_resolve, & resolve) ;
246
247
let num_pkgs: usize = diff. iter ( ) . map ( |d| d. added . len ( ) ) . sum ( ) ;
247
248
if num_pkgs == 0 {
248
249
return Ok ( ( ) ) ;
249
250
}
250
251
let plural = if num_pkgs == 1 { "" } else { "s" } ;
251
- shell. status ( "Locking" , format ! ( "{num_pkgs} package{plural}" ) ) ?;
252
+ gctx. shell ( )
253
+ . status ( "Locking" , format ! ( "{num_pkgs} package{plural}" ) ) ?;
252
254
253
255
for diff in diff {
254
256
fn format_latest ( version : semver:: Version ) -> String {
@@ -296,9 +298,11 @@ fn print_lockfile_sync(
296
298
// This metadata is often stuff like git commit hashes, which are
297
299
// not meaningfully ordered.
298
300
if removed. version ( ) . cmp_precedence ( added. version ( ) ) == Ordering :: Greater {
299
- shell. status_with_color ( "Downgrading" , msg, & style:: WARN ) ?;
301
+ gctx. shell ( )
302
+ . status_with_color ( "Downgrading" , msg, & style:: WARN ) ?;
300
303
} else {
301
- shell. status_with_color ( "Updating" , msg, & style:: GOOD ) ?;
304
+ gctx. shell ( )
305
+ . status_with_color ( "Updating" , msg, & style:: GOOD ) ?;
302
306
}
303
307
} else {
304
308
for package in diff. added . iter ( ) {
@@ -315,7 +319,11 @@ fn print_lockfile_sync(
315
319
}
316
320
. unwrap_or_default ( ) ;
317
321
318
- shell. status_with_color ( "Adding" , format ! ( "{package}{latest}" ) , & style:: NOTE ) ?;
322
+ gctx. shell ( ) . status_with_color (
323
+ "Adding" ,
324
+ format ! ( "{package}{latest}" ) ,
325
+ & style:: NOTE ,
326
+ ) ?;
319
327
}
320
328
}
321
329
}
@@ -329,8 +337,6 @@ pub fn print_lockfile_updates(
329
337
resolve : & Resolve ,
330
338
registry : & mut PackageRegistry < ' _ > ,
331
339
) -> CargoResult < ( ) > {
332
- let mut shell = gctx. shell ( ) ;
333
-
334
340
let mut unchanged_behind = 0 ;
335
341
for diff in PackageDiff :: diff ( & previous_resolve, & resolve) {
336
342
fn format_latest ( version : semver:: Version ) -> String {
@@ -378,13 +384,16 @@ pub fn print_lockfile_updates(
378
384
// This metadata is often stuff like git commit hashes, which are
379
385
// not meaningfully ordered.
380
386
if removed. version ( ) . cmp_precedence ( added. version ( ) ) == Ordering :: Greater {
381
- shell. status_with_color ( "Downgrading" , msg, & style:: WARN ) ?;
387
+ gctx. shell ( )
388
+ . status_with_color ( "Downgrading" , msg, & style:: WARN ) ?;
382
389
} else {
383
- shell. status_with_color ( "Updating" , msg, & style:: GOOD ) ?;
390
+ gctx. shell ( )
391
+ . status_with_color ( "Updating" , msg, & style:: GOOD ) ?;
384
392
}
385
393
} else {
386
394
for package in diff. removed . iter ( ) {
387
- shell. status_with_color ( "Removing" , format ! ( "{package}" ) , & style:: ERROR ) ?;
395
+ gctx. shell ( )
396
+ . status_with_color ( "Removing" , format ! ( "{package}" ) , & style:: ERROR ) ?;
388
397
}
389
398
for package in diff. added . iter ( ) {
390
399
let latest = if !possibilities. is_empty ( ) {
@@ -400,7 +409,11 @@ pub fn print_lockfile_updates(
400
409
}
401
410
. unwrap_or_default ( ) ;
402
411
403
- shell. status_with_color ( "Adding" , format ! ( "{package}{latest}" ) , & style:: NOTE ) ?;
412
+ gctx. shell ( ) . status_with_color (
413
+ "Adding" ,
414
+ format ! ( "{package}{latest}" ) ,
415
+ & style:: NOTE ,
416
+ ) ?;
404
417
}
405
418
}
406
419
for package in & diff. unchanged {
@@ -418,8 +431,8 @@ pub fn print_lockfile_updates(
418
431
419
432
if let Some ( latest) = latest {
420
433
unchanged_behind += 1 ;
421
- if shell. verbosity ( ) == Verbosity :: Verbose {
422
- shell. status_with_color (
434
+ if gctx . shell ( ) . verbosity ( ) == Verbosity :: Verbose {
435
+ gctx . shell ( ) . status_with_color (
423
436
"Unchanged" ,
424
437
format ! ( "{package}{latest}" ) ,
425
438
& anstyle:: Style :: new ( ) . bold ( ) ,
@@ -428,13 +441,14 @@ pub fn print_lockfile_updates(
428
441
}
429
442
}
430
443
}
431
- if shell. verbosity ( ) == Verbosity :: Verbose {
432
- shell. note (
444
+
445
+ if gctx. shell ( ) . verbosity ( ) == Verbosity :: Verbose {
446
+ gctx. shell ( ) . note (
433
447
"to see how you depend on a package, run `cargo tree --invert --package <dep>@<ver>`" ,
434
448
) ?;
435
449
} else {
436
450
if 0 < unchanged_behind {
437
- shell. note ( format ! (
451
+ gctx . shell ( ) . note ( format ! (
438
452
"pass `--verbose` to see {unchanged_behind} unchanged dependencies behind latest"
439
453
) ) ?;
440
454
}
0 commit comments