2020-11-14 16:35:31 +01:00
|
|
|
#![feature(assert_matches)]
|
2020-03-18 10:25:22 +01:00
|
|
|
#![feature(core_intrinsics)]
|
2020-03-19 14:13:31 +01:00
|
|
|
#![feature(hash_raw_entry)]
|
2020-06-01 18:58:18 +01:00
|
|
|
#![feature(min_specialization)]
|
2021-10-11 22:33:16 -04:00
|
|
|
#![feature(extern_types)]
|
2022-02-23 08:06:22 -05:00
|
|
|
#![allow(rustc::potential_query_instability)]
|
2022-10-03 14:26:29 +01:00
|
|
|
#![deny(rustc::untranslatable_diagnostic)]
|
2022-08-21 21:37:05 +08:00
|
|
|
#![deny(rustc::diagnostic_outside_of_impl)]
|
2020-03-18 10:25:22 +01:00
|
|
|
|
|
|
|
#[macro_use]
|
2020-08-13 23:05:01 -07:00
|
|
|
extern crate tracing;
|
2020-03-19 14:13:31 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_data_structures;
|
2020-06-11 15:49:57 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_macros;
|
2020-03-18 10:25:22 +01:00
|
|
|
|
2020-08-02 15:03:47 +02:00
|
|
|
pub mod cache;
|
2020-03-18 10:25:22 +01:00
|
|
|
pub mod dep_graph;
|
2022-08-21 21:37:05 +08:00
|
|
|
mod error;
|
2020-11-14 16:35:31 +01:00
|
|
|
pub mod ich;
|
2020-03-19 14:13:31 +01:00
|
|
|
pub mod query;
|
2022-09-01 20:43:12 -05:00
|
|
|
mod values;
|
|
|
|
|
|
|
|
pub use error::HandleCycleError;
|
2022-09-15 15:45:17 +08:00
|
|
|
pub use error::LayoutOfDepth;
|
|
|
|
pub use error::QueryOverflow;
|
2022-09-01 20:43:12 -05:00
|
|
|
pub use values::Value;
|