rust/compiler/rustc_query_system/src/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
552 B
Rust
Raw Normal View History

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