File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ pub enum ResolveVersion {
85
85
V3 ,
86
86
/// SourceId URL serialization is aware of URL encoding. For example,
87
87
/// `?branch=foo bar` is now encoded as `?branch=foo+bar` and can be decoded
88
- /// back and forth correctly. Introduced in 2024 in version 1.77 .
88
+ /// back and forth correctly. Introduced in 2024 in version 1.78 .
89
89
V4 ,
90
90
/// Unstable. Will collect a certain amount of changes and then go.
91
91
///
Original file line number Diff line number Diff line change @@ -1220,6 +1220,7 @@ dependencies = [
1220
1220
( "1.37" , Some ( 1 ) , 1 ) ,
1221
1221
( "1.37" , Some ( 2 ) , 2 ) ,
1222
1222
( "1.37" , Some ( 3 ) , 3 ) ,
1223
+ ( "1.37" , Some ( 4 ) , 4 ) ,
1223
1224
// v2 introduced
1224
1225
( "1.38" , None , 1 ) ,
1225
1226
// last version of v1 as the default
@@ -1229,6 +1230,7 @@ dependencies = [
1229
1230
( "1.41" , Some ( 1 ) , 1 ) ,
1230
1231
( "1.41" , Some ( 2 ) , 2 ) ,
1231
1232
( "1.41" , Some ( 3 ) , 3 ) ,
1233
+ ( "1.41" , Some ( 4 ) , 4 ) ,
1232
1234
// v3 introduced
1233
1235
( "1.47" , None , 2 ) ,
1234
1236
// last version of v2 as the default
@@ -1238,6 +1240,9 @@ dependencies = [
1238
1240
( "1.53" , Some ( 1 ) , 1 ) ,
1239
1241
( "1.53" , Some ( 2 ) , 2 ) ,
1240
1242
( "1.53" , Some ( 3 ) , 3 ) ,
1243
+ ( "1.53" , Some ( 4 ) , 4 ) ,
1244
+ // v4 introduced
1245
+ ( "1.78" , None , 3 ) ,
1241
1246
] ;
1242
1247
1243
1248
for ( msrv, existing_lockfile, expected_version) in cases {
You can’t perform that action at this time.
0 commit comments