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