blob: a6002bfd7ca48a605d63249511d1f0ad3a4558de (
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.
#![feature(let_chains)]
// TODO: remove this, use explicit imports.
#[macro_use]
extern crate tracing;
pub mod canonicalizer;
pub mod infcx;
pub mod resolve;
pub mod solve;
|