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