]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_attr/src/lib.rs
Rollup merge of #89538 - notriddle:notriddle/arrow-highlight, r=GuillaumeGomez
[rust.git] / compiler / rustc_attr / src / lib.rs
1 //! Functions and types dealing with attributes and meta items.
2 //!
3 //! FIXME(Centril): For now being, much of the logic is still in `rustc_ast::attr`.
4 //! The goal is to move the definition of `MetaItem` and things that don't need to be in `syntax`
5 //! to this crate.
6
7 #[macro_use]
8 extern crate rustc_macros;
9
10 mod builtin;
11
12 pub use builtin::*;
13 pub use IntType::*;
14 pub use ReprAttr::*;
15 pub use StabilityLevel::*;
16
17 pub use rustc_ast::attr::*;
18
19 pub(crate) use rustc_ast::HashStableContext;