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.
|
|
|
|
|
2023-11-22 23:44:58 +00:00
|
|
|
pub mod canonicalizer;
|
2024-06-18 23:13:54 +00:00
|
|
|
pub mod delegate;
|
2024-06-12 18:58:10 +00:00
|
|
|
pub mod relate;
|
2024-05-19 17:04:44 +00:00
|
|
|
pub mod resolve;
|
2024-05-16 02:37:42 +00:00
|
|
|
pub mod solve;
|