]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_query_system/src/lib.rs
merge rustc history
[rust.git] / compiler / rustc_query_system / src / lib.rs
1 #![feature(assert_matches)]
2 #![feature(core_intrinsics)]
3 #![feature(hash_raw_entry)]
4 #![cfg_attr(bootstrap, feature(let_else))]
5 #![feature(min_specialization)]
6 #![feature(extern_types)]
7 #![allow(rustc::potential_query_instability)]
8 // #![deny(rustc::untranslatable_diagnostic)]
9 #![deny(rustc::diagnostic_outside_of_impl)]
10
11 #[macro_use]
12 extern crate tracing;
13 #[macro_use]
14 extern crate rustc_data_structures;
15 #[macro_use]
16 extern crate rustc_macros;
17
18 pub mod cache;
19 pub mod dep_graph;
20 mod error;
21 pub mod ich;
22 pub mod query;
23 mod values;
24
25 pub use error::HandleCycleError;
26 pub use error::LayoutOfDepth;
27 pub use error::QueryOverflow;
28 pub use values::Value;