]> git.proxmox.com Git - rustc.git/blob - src/librustc_session/lib.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / librustc_session / lib.rs
1 #![feature(test)]
2
3 // Use the test crate here so we depend on getopts through it. This allow tools to link to both
4 // librustc_session and libtest.
5 extern crate test as _;
6 extern crate getopts;
7
8 pub mod cgu_reuse_tracker;
9 pub mod utils;
10 #[macro_use]
11 pub mod lint;
12 pub mod node_id;
13 pub mod parse;
14
15 mod code_stats;
16 pub mod config;
17 pub mod filesearch;
18 pub mod search_paths;
19
20 mod session;
21 pub use session::*;