@@ -1113,33 +1113,57 @@ fn report_rust_versions() {
1113
1113
. rust_version ( "1.55.0" )
1114
1114
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1115
1115
. publish ( ) ;
1116
+
1117
+ Package :: new ( "dep-only-low-incompatible" , "1.55.0" )
1118
+ . rust_version ( "1.55.0" )
1119
+ . file ( "src/lib.rs" , "fn other_stuff() {}" )
1120
+ . publish ( ) ;
1116
1121
Package :: new ( "dep-only-low-incompatible" , "1.75.0" )
1117
1122
. rust_version ( "1.75.0" )
1118
1123
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1119
1124
. publish ( ) ;
1125
+
1126
+ Package :: new ( "dep-only-high-compatible" , "1.55.0" )
1127
+ . rust_version ( "1.55.0" )
1128
+ . file ( "src/lib.rs" , "fn other_stuff() {}" )
1129
+ . publish ( ) ;
1120
1130
Package :: new ( "dep-only-high-compatible" , "1.65.0" )
1121
1131
. rust_version ( "1.65.0" )
1122
1132
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1123
1133
. publish ( ) ;
1134
+
1135
+ Package :: new ( "dep-only-high-incompatible" , "1.55.0" )
1136
+ . rust_version ( "1.55.0" )
1137
+ . file ( "src/lib.rs" , "fn other_stuff() {}" )
1138
+ . publish ( ) ;
1124
1139
Package :: new ( "dep-only-high-incompatible" , "1.75.0" )
1125
1140
. rust_version ( "1.75.0" )
1126
1141
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1127
1142
. publish ( ) ;
1143
+
1128
1144
Package :: new ( "dep-only-unset-unset" , "1.0.0" )
1129
1145
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1130
1146
. publish ( ) ;
1147
+
1148
+ Package :: new ( "dep-only-unset-compatible" , "1.55.0" )
1149
+ . rust_version ( "1.55.0" )
1150
+ . file ( "src/lib.rs" , "fn other_stuff() {}" )
1151
+ . publish ( ) ;
1131
1152
Package :: new ( "dep-only-unset-compatible" , "1.75.0" )
1132
1153
. rust_version ( "1.75.0" )
1133
1154
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1134
1155
. publish ( ) ;
1156
+
1135
1157
Package :: new ( "dep-only-unset-incompatible" , "1.2345.0" )
1136
1158
. rust_version ( "1.2345.0" )
1137
1159
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1138
1160
. publish ( ) ;
1161
+
1139
1162
Package :: new ( "dep-shared-compatible" , "1.55.0" )
1140
1163
. rust_version ( "1.55.0" )
1141
1164
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1142
1165
. publish ( ) ;
1166
+
1143
1167
Package :: new ( "dep-shared-incompatible" , "1.75.0" )
1144
1168
. rust_version ( "1.75.0" )
1145
1169
. file ( "src/lib.rs" , "fn other_stuff() {}" )
@@ -1210,8 +1234,10 @@ fn report_rust_versions() {
1210
1234
. with_stderr_data ( str![ [ r#"
1211
1235
[UPDATING] `dummy-registry` index
1212
1236
[LOCKING] 9 packages to latest Rust 1.60.0 compatible versions
1213
- [ADDING] dep-only-high-incompatible v1.75.0 (requires Rust 1.75.0)
1214
- [ADDING] dep-only-low-incompatible v1.75.0 (requires Rust 1.75.0)
1237
+ [ADDING] dep-only-high-compatible v1.55.0 (available: v1.65.0)
1238
+ [ADDING] dep-only-high-incompatible v1.55.0 (available: v1.75.0, requires Rust 1.75.0)
1239
+ [ADDING] dep-only-low-incompatible v1.55.0 (available: v1.75.0, requires Rust 1.75.0)
1240
+ [ADDING] dep-only-unset-compatible v1.55.0 (available: v1.75.0)
1215
1241
[ADDING] dep-only-unset-incompatible v1.2345.0 (requires Rust 1.2345.0)
1216
1242
[ADDING] dep-shared-incompatible v1.75.0 (requires Rust 1.75.0)
1217
1243
0 commit comments