]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_traits/src/lib.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / compiler / rustc_traits / src / lib.rs
1 //! New recursive solver modeled on Chalk's recursive solver. Most of
2 //! the guts are broken up into modules; see the comments in those modules.
3
4 #![feature(crate_visibility_modifier)]
5 #![feature(in_band_lifetimes)]
6 #![feature(nll)]
7 #![recursion_limit = "256"]
8
9 #[macro_use]
10 extern crate tracing;
11 #[macro_use]
12 extern crate rustc_middle;
13
14 mod chalk;
15 mod dropck_outlives;
16 mod evaluate_obligation;
17 mod implied_outlives_bounds;
18 mod normalize_erasing_regions;
19 mod normalize_projection_ty;
20 mod type_op;
21
22 pub use type_op::{type_op_ascribe_user_type_with_span, type_op_prove_predicate_with_span};
23
24 use rustc_middle::ty::query::Providers;
25
26 pub fn provide(p: &mut Providers) {
27 dropck_outlives::provide(p);
28 evaluate_obligation::provide(p);
29 implied_outlives_bounds::provide(p);
30 chalk::provide(p);
31 normalize_projection_ty::provide(p);
32 normalize_erasing_regions::provide(p);
33 type_op::provide(p);
34 }