rustc_query_system/lib.rs
1// tidy-alphabetical-start
2#![allow(rustc::potential_query_instability, internal_features)]
3#![feature(assert_matches)]
4#![feature(core_intrinsics)]
5#![feature(dropck_eyepatch)]
6#![feature(hash_raw_entry)]
7#![feature(let_chains)]
8#![feature(min_specialization)]
9#![warn(unreachable_pub)]
10// tidy-alphabetical-end
11
12pub mod cache;
13pub mod dep_graph;
14mod error;
15pub mod ich;
16pub mod query;
17mod values;
18
19pub use error::{HandleCycleError, QueryOverflow, QueryOverflowNote};
20pub use values::Value;
21
22rustc_fluent_macro::fluent_messages! { "../messages.ftl" }