@@ -1096,14 +1096,14 @@ fn incompatible_dependencies() {
10961096 "\
10971097 error: failed to select a version for `bad`.
10981098 ... required by package `qux v0.1.0`
1099- ... which is depended on by `foo v0.0.1 ([..])`
1099+ ... which satisfies dependency `qux = \" ^0.1.0 \" ` of package `foo v0.0.1 ([..])`
11001100versions that meet the requirements `>=1.0.1` are: 1.0.2, 1.0.1
11011101
11021102all possible versions conflict with previously selected packages.
11031103
11041104 previously selected package `bad v1.0.0`
1105- ... which is depended on by `baz v0.1.0`
1106- ... which is depended on by `foo v0.0.1 ([..])`
1105+ ... which satisfies dependency `bad = \" =1.0.0 \" ` of package `baz v0.1.0`
1106+ ... which satisfies dependency `baz = \" ^0.1.0 \" ` of package `foo v0.0.1 ([..])`
11071107
11081108failed to select a version for `bad` which could resolve this conflict" ,
11091109 )
@@ -1147,12 +1147,12 @@ versions that meet the requirements `>=1.0.1, <=2.0.0` are: 2.0.0, 1.0.1
11471147all possible versions conflict with previously selected packages.
11481148
11491149 previously selected package `bad v2.0.1`
1150- ... which is depended on by `baz v0.1.0`
1151- ... which is depended on by `foo v0.0.1 ([..])`
1150+ ... which satisfies dependency `bad = \" >=2.0.1 \" ` of package `baz v0.1.0`
1151+ ... which satisfies dependency `baz = \" ^0.1.0 \" ` of package `foo v0.0.1 ([..])`
11521152
11531153 previously selected package `bad v1.0.0`
1154- ... which is depended on by `bar v0.1.0`
1155- ... which is depended on by `foo v0.0.1 ([..])`
1154+ ... which satisfies dependency `bad = \" =1.0.0 \" ` of package `bar v0.1.0`
1155+ ... which satisfies dependency `bar = \" ^0.1.0 \" ` of package `foo v0.0.1 ([..])`
11561156
11571157failed to select a version for `bad` which could resolve this conflict" ,
11581158 )
@@ -1662,7 +1662,7 @@ fn self_dependency() {
16621662 "\
16631663 [ERROR] cyclic package dependency: package `test v0.0.0 ([CWD])` depends on itself. Cycle:
16641664package `test v0.0.0 ([CWD])`
1665- ... which is depended on by `test v0.0.0 ([..])`" ,
1665+ ... which satisfies path dependency `test` of package `test v0.0.0 ([..])`" ,
16661666 )
16671667 . run ( ) ;
16681668}
@@ -2808,8 +2808,8 @@ fn cyclic_deps_rejected() {
28082808 . with_stderr (
28092809"[ERROR] cyclic package dependency: package `a v0.0.1 ([CWD]/a)` depends on itself. Cycle:
28102810package `a v0.0.1 ([CWD]/a)`
2811- ... which is depended on by `foo v0.0.1 ([CWD])`
2812- ... which is depended on by `a v0.0.1 ([..])`" ,
2811+ ... which satisfies path dependency `a` of package `foo v0.0.1 ([CWD])`
2812+ ... which satisfies path dependency `foo` of package `a v0.0.1 ([..])`" ,
28132813 ) . run ( ) ;
28142814}
28152815
0 commit comments