]> git.lizzy.rs Git - rust.git/blob - src/librustc_borrowck/lib.rs
Fix invalid associated type rendering in rustdoc
[rust.git] / src / librustc_borrowck / lib.rs
1 // Copyright 2012-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 #![crate_name = "rustc_borrowck"]
12 #![unstable(feature = "rustc_private", issue = "27812")]
13 #![crate_type = "dylib"]
14 #![crate_type = "rlib"]
15 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
16       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
17       html_root_url = "https://doc.rust-lang.org/nightly/")]
18 #![deny(warnings)]
19
20 #![allow(non_camel_case_types)]
21
22 #![feature(quote)]
23 #![feature(rustc_diagnostic_macros)]
24 #![feature(rustc_private)]
25 #![feature(staged_api)]
26 #![feature(associated_consts)]
27 #![feature(nonzero)]
28 #[macro_use] extern crate log;
29 #[macro_use] extern crate syntax;
30 extern crate syntax_pos;
31 extern crate rustc_errors as errors;
32
33 // for "clarity", rename the graphviz crate to dot; graphviz within `borrowck`
34 // refers to the borrowck-specific graphviz adapter traits.
35 extern crate graphviz as dot;
36 #[macro_use]
37 extern crate rustc;
38 extern crate rustc_data_structures;
39 extern crate rustc_mir;
40 extern crate core; // for NonZero
41
42 pub use borrowck::check_crate;
43 pub use borrowck::build_borrowck_dataflow_data_for_fn;
44 pub use borrowck::{AnalysisData, BorrowckCtxt, ElaborateDrops};
45
46 // NB: This module needs to be declared first so diagnostics are
47 // registered before they are used.
48 pub mod diagnostics;
49
50 mod borrowck;
51
52 pub mod graphviz;
53
54 __build_diagnostic_array! { librustc_borrowck, DIAGNOSTICS }