]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
rollup merge of #21830: japaric/for-cleanup
[rust.git] / src / librustc / lib.rs
1 // Copyright 2012-2013 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 //! The Rust compiler.
12 //!
13 //! # Note
14 //!
15 //! This API is completely unstable and subject to change.
16
17 #![crate_name = "rustc"]
18 #![unstable(feature = "rustc_private")]
19 #![staged_api]
20 #![crate_type = "dylib"]
21 #![crate_type = "rlib"]
22 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
23       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
24       html_root_url = "http://doc.rust-lang.org/nightly/")]
25
26 #![feature(box_syntax)]
27 #![feature(collections)]
28 #![feature(core)]
29 #![feature(hash)]
30 #![feature(int_uint)]
31 #![feature(io)]
32 #![feature(libc)]
33 #![feature(env)]
34 #![feature(path)]
35 #![feature(quote)]
36 #![feature(rustc_diagnostic_macros)]
37 #![feature(rustc_private)]
38 #![feature(slicing_syntax, unsafe_destructor)]
39 #![feature(staged_api)]
40 #![feature(std_misc)]
41 #![feature(unicode)]
42 #![cfg_attr(test, feature(test))]
43
44 extern crate arena;
45 extern crate flate;
46 extern crate fmt_macros;
47 extern crate getopts;
48 extern crate graphviz;
49 extern crate libc;
50 extern crate rustc_llvm;
51 extern crate rustc_back;
52 extern crate serialize;
53 extern crate rbml;
54 extern crate collections;
55 #[macro_use] extern crate log;
56 #[macro_use] extern crate syntax;
57 #[macro_use] #[no_link] extern crate rustc_bitflags;
58
59 extern crate "serialize" as rustc_serialize; // used by deriving
60
61 #[cfg(test)]
62 extern crate test;
63
64 pub use rustc_llvm as llvm;
65
66 // NB: This module needs to be declared first so diagnostics are
67 // registered before they are used.
68 pub mod diagnostics;
69
70 pub mod back {
71     pub use rustc_back::abi;
72     pub use rustc_back::archive;
73     pub use rustc_back::arm;
74     pub use rustc_back::mips;
75     pub use rustc_back::mipsel;
76     pub use rustc_back::rpath;
77     pub use rustc_back::svh;
78     pub use rustc_back::target_strs;
79     pub use rustc_back::x86;
80     pub use rustc_back::x86_64;
81 }
82
83 pub mod middle {
84     pub mod astconv_util;
85     pub mod astencode;
86     pub mod cfg;
87     pub mod check_const;
88     pub mod check_static_recursion;
89     pub mod check_loop;
90     pub mod check_match;
91     pub mod check_rvalues;
92     pub mod check_static;
93     pub mod const_eval;
94     pub mod dataflow;
95     pub mod dead;
96     pub mod def;
97     pub mod dependency_format;
98     pub mod effect;
99     pub mod entry;
100     pub mod expr_use_visitor;
101     pub mod fast_reject;
102     pub mod graph;
103     pub mod intrinsicck;
104     pub mod infer;
105     pub mod lang_items;
106     pub mod liveness;
107     pub mod mem_categorization;
108     pub mod pat_util;
109     pub mod privacy;
110     pub mod reachable;
111     pub mod region;
112     pub mod recursion_limit;
113     pub mod resolve_lifetime;
114     pub mod stability;
115     pub mod subst;
116     pub mod traits;
117     pub mod ty;
118     pub mod ty_fold;
119     pub mod ty_walk;
120     pub mod weak_lang_items;
121 }
122
123 pub mod metadata;
124
125 pub mod session;
126
127 pub mod plugin;
128
129 pub mod lint;
130
131 pub mod util {
132     pub use rustc_back::fs;
133     pub use rustc_back::sha2;
134
135     pub mod common;
136     pub mod ppaux;
137     pub mod nodemap;
138     pub mod snapshot_vec;
139     pub mod lev_distance;
140 }
141
142 pub mod lib {
143     pub use llvm;
144 }
145
146 // A private module so that macro-expanded idents like
147 // `::rustc::lint::Lint` will also work in `rustc` itself.
148 //
149 // `libstd` uses the same trick.
150 #[doc(hidden)]
151 mod rustc {
152     pub use lint;
153 }