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
497 B
Rust
Raw Normal View History

2020-11-14 15:35:31 +00:00
#![feature(assert_matches)]
2020-03-18 09:25:22 +00:00
#![feature(core_intrinsics)]
2020-03-19 13:13:31 +00:00
#![feature(hash_raw_entry)]
#![feature(let_else)]
#![feature(min_specialization)]
#![feature(extern_types)]
2022-02-23 13:06:22 +00:00
#![allow(rustc::potential_query_instability)]
#![deny(rustc::untranslatable_diagnostic)]
#![deny(rustc::diagnostic_outside_of_impl)]
2020-03-18 09:25:22 +00:00
#[macro_use]
2020-08-14 06:05:01 +00:00
extern crate tracing;
2020-03-19 13:13:31 +00:00
#[macro_use]
extern crate rustc_data_structures;
#[macro_use]
extern crate rustc_macros;
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;