about summary refs log tree commit diff
path: root/compiler/rustc_next_trait_solver/src/lib.rs
blob: f575fe03019eda536c1dd6989026d7082b20ecc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Crate containing the implementation of the next-generation trait solver.
//!
//! This crate may also contain things that are used by the old trait solver,
//! but were uplifted in the process of making the new trait solver generic.
//! So if you got to this crate from the old solver, it's totally normal.

// tidy-alphabetical-start
#![allow(rustc::usage_of_type_ir_inherent)]
#![cfg_attr(not(bootstrap), allow(rustc::usage_of_type_ir_traits))]
// tidy-alphabetical-end

pub mod canonicalizer;
pub mod coherence;
pub mod delegate;
pub mod resolve;
pub mod solve;