rustc_query_system/
lib.rs

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