File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,11 @@ explaining the format of the entry.
239
239
" yanked" : false ,
240
240
// The `links` string value from the package's manifest, or null if not
241
241
// specified. This field is optional and defaults to null.
242
- " links" : null
242
+ " links" : null ,
243
+ // This is `true` if the package is a proc-macro.
244
+ // Note: This field was added in Rust 1.44. Packages published with
245
+ // earlier versions will not set this field.
246
+ " pm" : false ,
243
247
}
244
248
```
245
249
@@ -404,6 +408,10 @@ considered as an exhaustive list of restrictions [crates.io] imposes.
404
408
// The `links` string value from the package's manifest, or null if not
405
409
// specified. This field is optional and defaults to null.
406
410
" links" : null ,
411
+ // This is `true` if the package is a proc-macro.
412
+ // Note: This field was added in Rust 1.44. Packages published with
413
+ // earlier versions will not set this field.
414
+ " proc_macro" : false ,
407
415
}
408
416
```
409
417
You can’t perform that action at this time.
0 commit comments