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)]
|
2021-10-16 01:45:14 +00:00
|
|
|
#![feature(let_else)]
|
2020-06-01 17:58:18 +00:00
|
|
|
#![feature(min_specialization)]
|
2021-10-12 02:33:16 +00:00
|
|
|
#![feature(extern_types)]
|
2022-02-23 13:06:22 +00:00
|
|
|
#![allow(rustc::potential_query_instability)]
|
2022-08-21 13:37:05 +00:00
|
|
|
#![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;
|
2020-06-11 14:49:57 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_macros;
|
2020-03-18 09:25:22 +00:00
|
|
|
|
2020-08-02 13:03:47 +00:00
|
|
|
pub mod cache;
|
2020-03-18 09:25:22 +00:00
|
|
|
pub mod dep_graph;
|
2022-08-21 13:37:05 +00:00
|
|
|
mod error;
|
2020-11-14 15:35:31 +00:00
|
|
|
pub mod ich;
|
2020-03-19 13:13:31 +00:00
|
|
|
pub mod query;
|