File tree 11 files changed +174
-0
lines changed
11 files changed +174
-0
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ pub struct SerializedPackage {
102
102
links : Option < String > ,
103
103
#[ serde( skip_serializing_if = "Option::is_none" ) ]
104
104
metabuild : Option < Vec < String > > ,
105
+ default_run : Option < String > ,
105
106
}
106
107
107
108
impl Package {
@@ -267,6 +268,7 @@ impl Package {
267
268
links : self . manifest ( ) . links ( ) . map ( |s| s. to_owned ( ) ) ,
268
269
metabuild : self . manifest ( ) . metabuild ( ) . cloned ( ) ,
269
270
publish : self . publish ( ) . as_ref ( ) . cloned ( ) ,
271
+ default_run : self . manifest ( ) . default_run ( ) . map ( |s| s. to_owned ( ) ) ,
270
272
}
271
273
}
272
274
}
Original file line number Diff line number Diff line change @@ -180,6 +180,8 @@ The output has the following format:
180
180
" categories" : [
181
181
" command-line-utilities"
182
182
],
183
+ /* Optional string that is the default binary picked by cargo run. */
184
+ " default_run" : null ,
183
185
/* Array of keywords from the manifest. */
184
186
" keywords" : [
185
187
" cli"
Original file line number Diff line number Diff line change @@ -175,6 +175,8 @@ OUTPUT FORMAT
175
175
"categories": [
176
176
"command-line-utilities"
177
177
],
178
+ /* Optional string that is the default binary picked by cargo run. */
179
+ "default_run": null,
178
180
/* Array of keywords from the manifest. */
179
181
"keywords": [
180
182
"cli"
Original file line number Diff line number Diff line change @@ -180,6 +180,8 @@ The output has the following format:
180
180
" categories" : [
181
181
" command-line-utilities"
182
182
],
183
+ /* Optional string that is the default binary picked by cargo run. */
184
+ " default_run" : null ,
183
185
/* Array of keywords from the manifest. */
184
186
" keywords" : [
185
187
" cli"
Original file line number Diff line number Diff line change @@ -177,6 +177,8 @@ The output has the following format:
177
177
"categories": [
178
178
"command\- line\- utilities"
179
179
],
180
+ /* Optional string that is the default binary picked by cargo run. */
181
+ "default_run": null,
180
182
/* Array of keywords from the manifest. */
181
183
"keywords": [
182
184
"cli"
Original file line number Diff line number Diff line change @@ -829,6 +829,7 @@ fn alt_reg_metadata() {
829
829
"publish": null,
830
830
"authors": [],
831
831
"categories": [],
832
+ "default_run": null,
832
833
"keywords": [],
833
834
"readme": null,
834
835
"repository": null,
@@ -885,6 +886,7 @@ fn alt_reg_metadata() {
885
886
"publish": null,
886
887
"authors": [],
887
888
"categories": [],
889
+ "default_run": null,
888
890
"keywords": [],
889
891
"readme": null,
890
892
"repository": null,
@@ -909,6 +911,7 @@ fn alt_reg_metadata() {
909
911
"publish": null,
910
912
"authors": [],
911
913
"categories": [],
914
+ "default_run": null,
912
915
"keywords": [],
913
916
"readme": null,
914
917
"repository": null,
@@ -933,6 +936,7 @@ fn alt_reg_metadata() {
933
936
"publish": null,
934
937
"authors": [],
935
938
"categories": [],
939
+ "default_run": null,
936
940
"keywords": [],
937
941
"readme": null,
938
942
"repository": null,
@@ -982,6 +986,7 @@ fn alt_reg_metadata() {
982
986
"publish": null,
983
987
"authors": [],
984
988
"categories": [],
989
+ "default_run": null,
985
990
"keywords": [],
986
991
"readme": null,
987
992
"repository": null,
@@ -1019,6 +1024,7 @@ fn alt_reg_metadata() {
1019
1024
"publish": null,
1020
1025
"authors": [],
1021
1026
"categories": [],
1027
+ "default_run": null,
1022
1028
"keywords": [],
1023
1029
"readme": null,
1024
1030
"repository": null,
@@ -1115,6 +1121,7 @@ fn unknown_registry() {
1115
1121
"publish": null,
1116
1122
"authors": [],
1117
1123
"categories": [],
1124
+ "default_run": null,
1118
1125
"keywords": [],
1119
1126
"readme": null,
1120
1127
"repository": null,
@@ -1139,6 +1146,7 @@ fn unknown_registry() {
1139
1146
"publish": null,
1140
1147
"authors": [],
1141
1148
"categories": [],
1149
+ "default_run": null,
1142
1150
"keywords": [],
1143
1151
"readme": null,
1144
1152
"repository": null,
@@ -1176,6 +1184,7 @@ fn unknown_registry() {
1176
1184
"publish": null,
1177
1185
"authors": [],
1178
1186
"categories": [],
1187
+ "default_run": null,
1179
1188
"keywords": [],
1180
1189
"readme": null,
1181
1190
"repository": null,
Original file line number Diff line number Diff line change @@ -766,6 +766,7 @@ fn json_exposed() {
766
766
"publish": null,
767
767
"authors": [],
768
768
"categories": [],
769
+ "default_run": null,
769
770
"keywords": [],
770
771
"readme": null,
771
772
"repository": null,
Original file line number Diff line number Diff line change @@ -3081,6 +3081,7 @@ fn metadata_master_consistency() {
3081
3081
"publish": null,
3082
3082
"authors": [],
3083
3083
"categories": [],
3084
+ "default_run": null,
3084
3085
"keywords": [],
3085
3086
"readme": null,
3086
3087
"repository": null,
@@ -3118,6 +3119,7 @@ fn metadata_master_consistency() {
3118
3119
"publish": null,
3119
3120
"authors": [],
3120
3121
"categories": [],
3122
+ "default_run": null,
3121
3123
"keywords": [],
3122
3124
"readme": null,
3123
3125
"repository": null,
You can’t perform that action at this time.
0 commit comments