]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
efa6a6cccc2b6850583560a5ea2113f27a315b07
[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 #![crate_type = "dylib"]
19 #![crate_type = "rlib"]
20 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
21        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
22        html_root_url = "https://doc.rust-lang.org/nightly/")]
23 #![deny(warnings)]
24
25 #![feature(associated_consts)]
26 #![feature(box_patterns)]
27 #![feature(box_syntax)]
28 #![feature(conservative_impl_trait)]
29 #![feature(const_fn)]
30 #![feature(core_intrinsics)]
31 #![feature(discriminant_value)]
32 #![feature(i128_type)]
33 #![feature(libc)]
34 #![feature(never_type)]
35 #![feature(nonzero)]
36 #![feature(quote)]
37 #![feature(rustc_diagnostic_macros)]
38 #![feature(slice_patterns)]
39 #![feature(specialization)]
40 #![feature(unboxed_closures)]
41 #![feature(discriminant_value)]
42 #![feature(trace_macros)]
43 #![feature(test)]
44
45 #![recursion_limit="256"]
46
47 extern crate arena;
48 extern crate core;
49 extern crate fmt_macros;
50 extern crate getopts;
51 extern crate graphviz;
52 extern crate libc;
53 extern crate owning_ref;
54 extern crate rustc_back;
55 extern crate rustc_data_structures;
56 extern crate serialize;
57 extern crate rustc_const_math;
58 extern crate rustc_errors as errors;
59 #[macro_use] extern crate log;
60 #[macro_use] extern crate syntax;
61 extern crate syntax_pos;
62 #[macro_use] #[no_link] extern crate rustc_bitflags;
63 extern crate jobserver;
64
65 extern crate serialize as rustc_serialize; // used by deriving
66
67 // Note that librustc doesn't actually depend on these crates, see the note in
68 // `Cargo.toml` for this crate about why these are here.
69 extern crate flate2;
70 extern crate test;
71
72 #[macro_use]
73 mod macros;
74
75 // NB: This module needs to be declared first so diagnostics are
76 // registered before they are used.
77 pub mod diagnostics;
78
79 pub mod cfg;
80 pub mod dep_graph;
81 pub mod hir;
82 pub mod ich;
83 pub mod infer;
84 pub mod lint;
85
86 pub mod middle {
87     pub mod allocator;
88     pub mod expr_use_visitor;
89     pub mod const_val;
90     pub mod cstore;
91     pub mod dataflow;
92     pub mod dead;
93     pub mod dependency_format;
94     pub mod effect;
95     pub mod entry;
96     pub mod free_region;
97     pub mod intrinsicck;
98     pub mod lang_items;
99     pub mod liveness;
100     pub mod mem_categorization;
101     pub mod privacy;
102     pub mod reachable;
103     pub mod region;
104     pub mod recursion_limit;
105     pub mod resolve_lifetime;
106     pub mod stability;
107     pub mod weak_lang_items;
108 }
109
110 pub mod mir;
111 pub mod session;
112 pub mod traits;
113 pub mod ty;
114
115 pub mod util {
116     pub mod common;
117     pub mod ppaux;
118     pub mod nodemap;
119     pub mod fs;
120 }
121
122 // A private module so that macro-expanded idents like
123 // `::rustc::lint::Lint` will also work in `rustc` itself.
124 //
125 // `libstd` uses the same trick.
126 #[doc(hidden)]
127 mod rustc {
128     pub use lint;
129 }
130
131 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
132 //                functions generated in librustc_data_structures (all
133 //                references are through generic functions), but statics are
134 //                referenced from time to time. Due to this bug we won't
135 //                actually correctly link in the statics unless we also
136 //                reference a function, so be sure to reference a dummy
137 //                function.
138 #[test]
139 fn noop() {
140     rustc_data_structures::__noop_fix_for_27438();
141 }
142
143
144 // Build the diagnostics array at the end so that the metadata includes error use sites.
145 __build_diagnostic_array! { librustc, DIAGNOSTICS }