rust/compiler/rustc_query_system/src/lib.rs

21 lines
453 B
Rust
Raw Normal View History

2020-11-14 15:35:31 +00:00
#![feature(assert_matches)]
2020-03-19 13:13:31 +00:00
#![feature(bool_to_option)]
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-01-05 12:02:16 +00:00
#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
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;
2020-11-14 15:35:31 +00:00
pub mod ich;
2020-03-19 13:13:31 +00:00
pub mod query;