]> git.lizzy.rs Git - rust.git/commit - src/tools/rust-analyzer
Auto merge of #95562 - lcnr:attr-no-encode, r=davidtwco
authorbors <bors@rust-lang.org>
Thu, 12 May 2022 12:48:30 +0000 (12:48 +0000)
committerbors <bors@rust-lang.org>
Thu, 12 May 2022 12:48:30 +0000 (12:48 +0000)
commit481db40311cdd241ae4d33f34f2f75732e44d8e8
tree6c5d0ea5404f19cd916403f46a6ae2105fddd096
parent18bd2dd5cda08b09ace6e37c1a0312e9b2bb4beb
parentebf95836e3cfc8c442cc71239324d947aafa3eac
Auto merge of #95562 - lcnr:attr-no-encode, r=davidtwco

don't encode only locally used attrs

Part of https://github.com/rust-lang/compiler-team/issues/505.

We now filter builtin attributes before encoding them in the crate metadata in case they should only be used in the local crate. To prevent accidental misuse `get_attrs` now requires the caller to state which attribute they are interested in. For places where that isn't trivially possible, I've added a method `fn get_attrs_unchecked` which I intend to remove in a followup PR.

After this pull request landed, we can then slowly move all attributes to only be used in the local crate while being certain that we don't accidentally try to access them from extern crates.

cc https://github.com/rust-lang/rust/pull/94963#issuecomment-1082924289
compiler/rustc_lint/src/builtin.rs
compiler/rustc_middle/src/query/mod.rs