]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
Rollup merge of #42151 - Wallacoloo:docfix_into_vec, r=frewsxcv
[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(i128_type)]
32 #![feature(libc)]
33 #![feature(never_type)]
34 #![feature(nonzero)]
35 #![feature(quote)]
36 #![feature(rustc_diagnostic_macros)]
37 #![feature(slice_patterns)]
38 #![feature(specialization)]
39 #![feature(unboxed_closures)]
40 #![feature(discriminant_value)]
41 #![feature(sort_unstable)]
42 #![feature(trace_macros)]
43
44 #![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
45 #![cfg_attr(stage0, feature(rustc_private))]
46 #![cfg_attr(stage0, feature(staged_api))]
47 #![cfg_attr(stage0, feature(loop_break_value))]
48
49 #![recursion_limit="128"]
50
51 extern crate arena;
52 extern crate core;
53 extern crate fmt_macros;
54 extern crate getopts;
55 extern crate graphviz;
56 extern crate libc;
57 extern crate owning_ref;
58 extern crate rustc_back;
59 extern crate rustc_data_structures;
60 extern crate serialize;
61 extern crate rustc_const_math;
62 extern crate rustc_errors as errors;
63 #[macro_use] extern crate log;
64 #[macro_use] extern crate syntax;
65 extern crate syntax_pos;
66 #[macro_use] #[no_link] extern crate rustc_bitflags;
67
68 extern crate serialize as rustc_serialize; // used by deriving
69
70 #[macro_use]
71 mod macros;
72
73 // NB: This module needs to be declared first so diagnostics are
74 // registered before they are used.
75 pub mod diagnostics;
76
77 pub mod cfg;
78 pub mod dep_graph;
79 pub mod hir;
80 pub mod ich;
81 pub mod infer;
82 pub mod lint;
83
84 pub mod middle {
85     pub mod expr_use_visitor;
86     pub mod const_val;
87     pub mod cstore;
88     pub mod dataflow;
89     pub mod dead;
90     pub mod dependency_format;
91     pub mod effect;
92     pub mod entry;
93     pub mod free_region;
94     pub mod intrinsicck;
95     pub mod lang_items;
96     pub mod liveness;
97     pub mod mem_categorization;
98     pub mod privacy;
99     pub mod reachable;
100     pub mod region;
101     pub mod recursion_limit;
102     pub mod resolve_lifetime;
103     pub mod stability;
104     pub mod weak_lang_items;
105 }
106
107 pub mod mir;
108 pub mod session;
109 pub mod traits;
110 pub mod ty;
111
112 pub mod util {
113     pub mod common;
114     pub mod ppaux;
115     pub mod nodemap;
116     pub mod fs;
117 }
118
119 // A private module so that macro-expanded idents like
120 // `::rustc::lint::Lint` will also work in `rustc` itself.
121 //
122 // `libstd` uses the same trick.
123 #[doc(hidden)]
124 mod rustc {
125     pub use lint;
126 }
127
128 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
129 //                functions generated in librustc_data_structures (all
130 //                references are through generic functions), but statics are
131 //                referenced from time to time. Due to this bug we won't
132 //                actually correctly link in the statics unless we also
133 //                reference a function, so be sure to reference a dummy
134 //                function.
135 #[test]
136 fn noop() {
137     rustc_data_structures::__noop_fix_for_27438();
138 }
139
140
141 // Build the diagnostics array at the end so that the metadata includes error use sites.
142 __build_diagnostic_array! { librustc, DIAGNOSTICS }