Files
rust/compiler/rustc_query_system/src/lib.rs

19 lines
409 B
Rust
Raw Normal View History

// tidy-alphabetical-start
#![allow(internal_features)]
2020-11-14 16:35:31 +01:00
#![feature(assert_matches)]
2020-03-18 10:25:22 +01:00
#![feature(core_intrinsics)]
#![feature(min_specialization)]
// tidy-alphabetical-end
2020-03-18 10:25:22 +01:00
pub mod cache;
2020-03-18 10:25:22 +01:00
pub mod dep_graph;
mod error;
2020-11-14 16:35:31 +01:00
pub mod ich;
2020-03-19 14:13:31 +01:00
pub mod query;
mod values;
pub use error::{HandleCycleError, QueryOverflow, QueryOverflowNote};
pub use values::Value;
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }