]> git.lizzy.rs Git - rust.git/blob - src/librustc_borrowck/lib.rs
Rollup merge of #60344 - Aaron1011:fix/tower-hyper, r=eddyb
[rust.git] / src / librustc_borrowck / lib.rs
1 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
2
3 #![allow(non_camel_case_types)]
4 #![deny(rust_2018_idioms)]
5 #![deny(internal)]
6
7 #![feature(nll)]
8
9 #![recursion_limit="256"]
10
11 #[macro_use]
12 extern crate rustc;
13
14 pub use borrowck::check_crate;
15 pub use borrowck::build_borrowck_dataflow_data_for_fn;
16
17 mod borrowck;
18
19 pub mod graphviz;
20
21 mod dataflow;
22
23 pub use borrowck::provide;