@@ -100,10 +100,10 @@ pub async fn resolve(summaries: &[Summary], registry: &mut dyn Registry) -> Resu
100
100
incompatibilities. sort ( ) ;
101
101
let incompatibilities = incompatibilities. join ( "\n " ) ;
102
102
bail ! ( formatdoc! { "
103
- Version resolution failed:
103
+ Version solving failed:
104
104
{incompatibilities}
105
105
106
- Scarb does not have real version resolution algorithm yet.
106
+ Scarb does not have real version solving algorithm yet.
107
107
Perhaps in the future this conflict could be resolved, but currently,
108
108
please upgrade your dependencies to use latest versions of their dependencies.
109
109
" } ) ;
@@ -303,10 +303,10 @@ mod tests {
303
303
// "foo v1.0.0 (/main)"
304
304
// ]),
305
305
Err ( indoc ! { "
306
- Version resolution failed:
306
+ Version solving failed:
307
307
- bar v2.0.0 (/main/) cannot use baz v1.0.0 (/main/), because bar requires baz ^2.0.0
308
308
309
- Scarb does not have real version resolution algorithm yet.
309
+ Scarb does not have real version solving algorithm yet.
310
310
Perhaps in the future this conflict could be resolved, but currently,
311
311
please upgrade your dependencies to use latest versions of their dependencies.
312
312
" } ) ,
@@ -333,10 +333,10 @@ mod tests {
333
333
// "foo v2.9.0 (/main)"
334
334
// ]),
335
335
Err ( indoc ! { "
336
- Version resolution failed:
336
+ Version solving failed:
337
337
- foo v2.7.0 (/main/) cannot use baz v2.1.0 (/main/), because foo requires baz ~1.7.1
338
338
339
- Scarb does not have real version resolution algorithm yet.
339
+ Scarb does not have real version solving algorithm yet.
340
340
Perhaps in the future this conflict could be resolved, but currently,
341
341
please upgrade your dependencies to use latest versions of their dependencies.
342
342
" } ) ,
0 commit comments