@@ -1087,33 +1087,57 @@ fn report_rust_versions() {
1087
1087
. rust_version ( "1.55.0" )
1088
1088
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1089
1089
. publish ( ) ;
1090
+
1091
+ Package :: new ( "dep-only-low-incompatible" , "1.55.0" )
1092
+ . rust_version ( "1.55.0" )
1093
+ . file ( "src/lib.rs" , "fn other_stuff() {}" )
1094
+ . publish ( ) ;
1090
1095
Package :: new ( "dep-only-low-incompatible" , "1.75.0" )
1091
1096
. rust_version ( "1.75.0" )
1092
1097
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1093
1098
. publish ( ) ;
1099
+
1100
+ Package :: new ( "dep-only-high-compatible" , "1.55.0" )
1101
+ . rust_version ( "1.55.0" )
1102
+ . file ( "src/lib.rs" , "fn other_stuff() {}" )
1103
+ . publish ( ) ;
1094
1104
Package :: new ( "dep-only-high-compatible" , "1.65.0" )
1095
1105
. rust_version ( "1.65.0" )
1096
1106
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1097
1107
. publish ( ) ;
1108
+
1109
+ Package :: new ( "dep-only-high-incompatible" , "1.55.0" )
1110
+ . rust_version ( "1.55.0" )
1111
+ . file ( "src/lib.rs" , "fn other_stuff() {}" )
1112
+ . publish ( ) ;
1098
1113
Package :: new ( "dep-only-high-incompatible" , "1.75.0" )
1099
1114
. rust_version ( "1.75.0" )
1100
1115
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1101
1116
. publish ( ) ;
1117
+
1102
1118
Package :: new ( "dep-only-unset-unset" , "1.0.0" )
1103
1119
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1104
1120
. publish ( ) ;
1121
+
1122
+ Package :: new ( "dep-only-unset-compatible" , "1.55.0" )
1123
+ . rust_version ( "1.55.0" )
1124
+ . file ( "src/lib.rs" , "fn other_stuff() {}" )
1125
+ . publish ( ) ;
1105
1126
Package :: new ( "dep-only-unset-compatible" , "1.75.0" )
1106
1127
. rust_version ( "1.75.0" )
1107
1128
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1108
1129
. publish ( ) ;
1130
+
1109
1131
Package :: new ( "dep-only-unset-incompatible" , "1.2345.0" )
1110
1132
. rust_version ( "1.2345.0" )
1111
1133
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1112
1134
. publish ( ) ;
1135
+
1113
1136
Package :: new ( "dep-shared-compatible" , "1.55.0" )
1114
1137
. rust_version ( "1.55.0" )
1115
1138
. file ( "src/lib.rs" , "fn other_stuff() {}" )
1116
1139
. publish ( ) ;
1140
+
1117
1141
Package :: new ( "dep-shared-incompatible" , "1.75.0" )
1118
1142
. rust_version ( "1.75.0" )
1119
1143
. file ( "src/lib.rs" , "fn other_stuff() {}" )
@@ -1184,8 +1208,10 @@ fn report_rust_versions() {
1184
1208
. with_stderr_data ( str![ [ r#"
1185
1209
[UPDATING] `dummy-registry` index
1186
1210
[LOCKING] 9 packages to latest Rust 1.60.0 compatible versions
1187
- [ADDING] dep-only-high-incompatible v1.75.0 (requires Rust 1.75.0)
1188
- [ADDING] dep-only-low-incompatible v1.75.0 (requires Rust 1.75.0)
1211
+ [ADDING] dep-only-high-compatible v1.55.0 (available: v1.65.0)
1212
+ [ADDING] dep-only-high-incompatible v1.55.0 (available: v1.75.0, requires Rust 1.75.0)
1213
+ [ADDING] dep-only-low-incompatible v1.55.0 (available: v1.75.0, requires Rust 1.75.0)
1214
+ [ADDING] dep-only-unset-compatible v1.55.0 (available: v1.75.0)
1189
1215
[ADDING] dep-only-unset-incompatible v1.2345.0 (requires Rust 1.2345.0)
1190
1216
[ADDING] dep-shared-incompatible v1.75.0 (requires Rust 1.75.0)
1191
1217
0 commit comments