2024-06-14 15:19:12 -04:00
|
|
|
//! 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.
|
|
|
|
|
2024-08-29 15:10:38 +10:00
|
|
|
// tidy-alphabetical-start
|
2024-10-14 14:46:44 -07:00
|
|
|
#![allow(rustc::usage_of_type_ir_inherent)]
|
2025-04-02 21:28:54 +01:00
|
|
|
#![allow(rustc::usage_of_type_ir_traits)]
|
2024-08-29 15:10:38 +10:00
|
|
|
// tidy-alphabetical-end
|
|
|
|
|
2023-11-22 23:44:58 +00:00
|
|
|
pub mod canonicalizer;
|
2024-07-06 18:24:51 -04:00
|
|
|
pub mod coherence;
|
2024-06-18 19:13:54 -04:00
|
|
|
pub mod delegate;
|
2024-05-19 13:04:44 -04:00
|
|
|
pub mod resolve;
|
2024-05-15 22:37:42 -04:00
|
|
|
pub mod solve;
|