rust/compiler/rustc_next_trait_solver/src/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
542 B
Rust
Raw Normal View History

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.
// 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)]
// tidy-alphabetical-end
pub mod canonicalizer;
pub mod coherence;
2024-06-18 19:13:54 -04:00
pub mod delegate;
pub mod resolve;
pub mod solve;