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