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