]> git.lizzy.rs Git - rust.git/blob - src/librustc_attr/lib.rs
Rollup merge of #69473 - contrun:update-llvm, r=nikomatsakis
[rust.git] / src / librustc_attr / 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 `syntax::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 mod builtin;
8
9 pub use builtin::*;
10 pub use IntType::*;
11 pub use ReprAttr::*;
12 pub use StabilityLevel::*;
13
14 pub use syntax::attr::*;
15
16 pub(crate) use syntax::HashStableContext;