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.
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.
11 //! The Rust compiler.
15 //! This API is completely unstable and subject to change.
17 #![crate_name = "rustc"]
18 #![unstable(feature = "rustc_private", issue = "27812")]
19 #![crate_type = "dylib"]
20 #![crate_type = "rlib"]
21 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
22 html_favicon_url
= "https://doc.rust-lang.org/favicon.ico",
23 html_root_url
= "https://doc.rust-lang.org/nightly/")]
24 #![cfg_attr(not(stage0), deny(warnings))]
26 #![feature(associated_consts)]
27 #![feature(box_patterns)]
28 #![feature(box_syntax)]
29 #![feature(collections)]
32 #![feature(iter_arith)]
36 #![feature(rustc_diagnostic_macros)]
37 #![feature(rustc_private)]
38 #![feature(slice_patterns)]
39 #![feature(staged_api)]
41 #![feature(question_mark)]
42 #![cfg_attr(test, feature(test))]
47 extern crate fmt_macros
;
49 extern crate graphviz
;
52 extern crate rustc_back
;
53 extern crate rustc_data_structures
;
54 extern crate serialize
;
55 extern crate collections
;
56 extern crate rustc_const_math
;
57 #[macro_use] extern crate log;
58 #[macro_use] extern crate syntax;
59 #[macro_use] #[no_link] extern crate rustc_bitflags;
61 extern crate serialize
as rustc_serialize
; // used by deriving
69 // NB: This module needs to be declared first so diagnostics are
70 // registered before they are used.
81 pub mod expr_use_visitor
; // STAGE0: increase glitch immunity
87 pub mod dependency_format
;
94 pub mod mem_categorization
;
98 pub mod recursion_limit
;
99 pub mod resolve_lifetime
;
101 pub mod weak_lang_items
;
117 pub use rustc_back
::sha2
;
126 // A private module so that macro-expanded idents like
127 // `::rustc::lint::Lint` will also work in `rustc` itself.
129 // `libstd` uses the same trick.
135 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
136 // functions generated in librustc_data_structures (all
137 // references are through generic functions), but statics are
138 // referenced from time to time. Due to this bug we won't
139 // actually correctly link in the statics unless we also
140 // reference a function, so be sure to reference a dummy
144 rustc_data_structures
::__noop_fix_for_27438();
148 // Build the diagnostics array at the end so that the metadata includes error use sites.
149 __build_diagnostic_array
! { librustc, DIAGNOSTICS }