allow cfg(bootstrap) to avoid check-cfg warning on stable

This commit is contained in:
Rémy Rakic 2024-08-24 20:40:02 +00:00
parent ad855fe6db
commit 902264b1a6

View File

@ -31,3 +31,6 @@ nightly = [
"rustc_index/nightly",
"rustc_ast_ir/nightly"
]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(bootstrap)'] }