]> git.lizzy.rs Git - rust.git/blob - src/librustc_traits/lib.rs
Auto merge of #53815 - F001:if-let-guard, r=petrochenkov
[rust.git] / src / librustc_traits / lib.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! New recursive solver modeled on Chalk's recursive solver. Most of
12 //! the guts are broken up into modules; see the comments in those modules.
13
14 #![feature(crate_in_paths)]
15 #![feature(crate_visibility_modifier)]
16 #![feature(extern_prelude)]
17 #![feature(in_band_lifetimes)]
18 #![cfg_attr(not(stage0), feature(nll))]
19 #![cfg_attr(not(stage0), feature(infer_outlives_requirements))]
20
21 #![recursion_limit="256"]
22
23 extern crate chalk_engine;
24 #[macro_use]
25 extern crate log;
26 #[macro_use]
27 extern crate rustc;
28 extern crate rustc_data_structures;
29 extern crate syntax;
30 extern crate syntax_pos;
31 extern crate smallvec;
32
33 mod chalk_context;
34 mod dropck_outlives;
35 mod evaluate_obligation;
36 mod implied_outlives_bounds;
37 mod normalize_projection_ty;
38 mod normalize_erasing_regions;
39 pub mod lowering;
40 mod type_op;
41
42 use rustc::ty::query::Providers;
43
44 pub fn provide(p: &mut Providers) {
45     dropck_outlives::provide(p);
46     evaluate_obligation::provide(p);
47     implied_outlives_bounds::provide(p);
48     lowering::provide(p);
49     normalize_projection_ty::provide(p);
50     normalize_erasing_regions::provide(p);
51     type_op::provide(p);
52 }