Add core lib to proc_macro dependencies

This commit is contained in:
Lukas Wirth 2023-03-09 12:32:16 +01:00
parent 38e9a110d4
commit d8c80e7d95
2 changed files with 13 additions and 1 deletions

View file

@ -276,4 +276,7 @@ unwind
std_detect
test";
const PROC_MACRO_DEPS: &str = "std";
// core is required for our builtin derives to work in the proc_macro lib currently
const PROC_MACRO_DEPS: &str = "
std
core";