@@ -38,7 +38,7 @@ fn override_simple() {
38
38
p. cargo ( "build" )
39
39
. with_stderr (
40
40
"\
41
- [UPDATING] registry `file://[..]`
41
+ [UPDATING] `file://[..]` index
42
42
[UPDATING] git repository `[..]`
43
43
[COMPILING] bar v0.1.0 (file://[..])
44
44
[COMPILING] foo v0.0.1 (CWD)
@@ -183,7 +183,7 @@ fn transitive() {
183
183
p. cargo ( "build" )
184
184
. with_stderr (
185
185
"\
186
- [UPDATING] registry `file://[..]`
186
+ [UPDATING] `file://[..]` index
187
187
[UPDATING] git repository `[..]`
188
188
[DOWNLOADING] baz v0.2.0 (registry [..])
189
189
[COMPILING] bar v0.1.0 (file://[..])
@@ -231,7 +231,7 @@ fn persists_across_rebuilds() {
231
231
p. cargo ( "build" )
232
232
. with_stderr (
233
233
"\
234
- [UPDATING] registry `file://[..]`
234
+ [UPDATING] `file://[..]` index
235
235
[UPDATING] git repository `file://[..]`
236
236
[COMPILING] bar v0.1.0 (file://[..])
237
237
[COMPILING] foo v0.0.1 (CWD)
@@ -275,7 +275,7 @@ fn replace_registry_with_path() {
275
275
p. cargo ( "build" )
276
276
. with_stderr (
277
277
"\
278
- [UPDATING] registry `file://[..]`
278
+ [UPDATING] `file://[..]` index
279
279
[COMPILING] bar v0.1.0 (file://[..])
280
280
[COMPILING] foo v0.0.1 (CWD)
281
281
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
@@ -336,7 +336,7 @@ fn use_a_spec_to_select() {
336
336
p. cargo ( "build" )
337
337
. with_stderr (
338
338
"\
339
- [UPDATING] registry `file://[..]`
339
+ [UPDATING] `file://[..]` index
340
340
[UPDATING] git repository `[..]`
341
341
[DOWNLOADING] [..]
342
342
[DOWNLOADING] [..]
@@ -393,7 +393,7 @@ fn override_adds_some_deps() {
393
393
p. cargo ( "build" )
394
394
. with_stderr (
395
395
"\
396
- [UPDATING] registry `file://[..]`
396
+ [UPDATING] `file://[..]` index
397
397
[UPDATING] git repository `[..]`
398
398
[DOWNLOADING] baz v0.1.1 (registry [..])
399
399
[COMPILING] baz v0.1.1
@@ -411,13 +411,13 @@ fn override_adds_some_deps() {
411
411
. with_stderr (
412
412
"\
413
413
[UPDATING] git repository `file://[..]`
414
- [UPDATING] registry `file://[..]`
414
+ [UPDATING] `file://[..]` index
415
415
" ,
416
416
) . run ( ) ;
417
417
p. cargo ( "update -p https://github.com/rust-lang/crates.io-index#bar" )
418
418
. with_stderr (
419
419
"\
420
- [UPDATING] registry `file://[..]`
420
+ [UPDATING] `file://[..]` index
421
421
" ,
422
422
) . run ( ) ;
423
423
@@ -508,7 +508,7 @@ fn override_wrong_name() {
508
508
. with_status ( 101 )
509
509
. with_stderr (
510
510
"\
511
- [UPDATING] registry [..]
511
+ [UPDATING] [..] index
512
512
[UPDATING] git repository [..]
513
513
error: no matching package for override `[..]baz:0.1.0` found
514
514
location searched: file://[..]
@@ -550,7 +550,7 @@ fn override_with_nothing() {
550
550
. with_status ( 101 )
551
551
. with_stderr (
552
552
"\
553
- [UPDATING] registry [..]
553
+ [UPDATING] [..] index
554
554
[UPDATING] git repository [..]
555
555
[ERROR] failed to load source for a dependency on `bar`
556
556
@@ -629,7 +629,7 @@ fn multiple_specs() {
629
629
. with_status ( 101 )
630
630
. with_stderr (
631
631
"\
632
- [UPDATING] registry [..]
632
+ [UPDATING] [..] index
633
633
[UPDATING] git repository [..]
634
634
error: overlapping replacement specifications found:
635
635
@@ -717,7 +717,7 @@ fn update() {
717
717
p. cargo ( "update" )
718
718
. with_stderr (
719
719
"\
720
- [UPDATING] registry `[..]`
720
+ [UPDATING] `[..]` index
721
721
[UPDATING] git repository `[..]`
722
722
" ,
723
723
) . run ( ) ;
@@ -1039,7 +1039,7 @@ fn no_warnings_when_replace_is_used_in_another_workspace_member() {
1039
1039
. with_stdout ( "" )
1040
1040
. with_stderr (
1041
1041
"\
1042
- [UPDATING] registry `[..]`
1042
+ [UPDATING] `[..]` index
1043
1043
[COMPILING] bar v0.1.0 ([..])
1044
1044
[COMPILING] first_crate v0.1.0 ([..])
1045
1045
[FINISHED] [..]" ,
0 commit comments