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)]
|
2020-06-01 17:58:18 +00:00
|
|
|
#![feature(min_specialization)]
|
2021-10-12 02:33:16 +00:00
|
|
|
#![feature(extern_types)]
|
2023-01-31 20:37:52 +00:00
|
|
|
#![feature(let_chains)]
|
2022-02-23 13:06:22 +00:00
|
|
|
#![allow(rustc::potential_query_instability)]
|
2022-10-03 13:26:29 +00:00
|
|
|
#![deny(rustc::untranslatable_diagnostic)]
|
2022-08-21 13:37:05 +00:00
|
|
|
#![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;
|
2022-09-02 01:43:12 +00:00
|
|
|
mod values;
|
|
|
|
|
|
|
|
pub use error::HandleCycleError;
|
2022-09-15 07:45:17 +00:00
|
|
|
pub use error::LayoutOfDepth;
|
|
|
|
pub use error::QueryOverflow;
|
2022-09-02 01:43:12 +00:00
|
|
|
pub use values::Value;
|