]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
Replace all uses of SHA-256 with BLAKE2b.
[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", 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))]
25
26 #![feature(associated_consts)]
27 #![feature(borrow_state)]
28 #![feature(box_patterns)]
29 #![feature(box_syntax)]
30 #![feature(collections)]
31 #![feature(conservative_impl_trait)]
32 #![feature(const_fn)]
33 #![feature(core_intrinsics)]
34 #![feature(dotdot_in_tuple_patterns)]
35 #![feature(enumset)]
36 #![feature(libc)]
37 #![feature(nonzero)]
38 #![feature(quote)]
39 #![feature(rustc_diagnostic_macros)]
40 #![feature(rustc_private)]
41 #![feature(slice_patterns)]
42 #![feature(staged_api)]
43 #![cfg_attr(stage0, feature(question_mark))]
44 #![cfg_attr(test, feature(test))]
45
46 extern crate arena;
47 extern crate core;
48 extern crate flate;
49 extern crate fmt_macros;
50 extern crate getopts;
51 extern crate graphviz;
52 extern crate libc;
53 extern crate rustc_llvm as llvm;
54 extern crate rustc_back;
55 extern crate rustc_data_structures;
56 extern crate serialize;
57 extern crate collections;
58 extern crate rustc_const_math;
59 extern crate rustc_errors as errors;
60 #[macro_use] extern crate log;
61 #[macro_use] extern crate syntax;
62 #[macro_use] extern crate syntax_pos;
63 #[macro_use] #[no_link] extern crate rustc_bitflags;
64
65 extern crate serialize as rustc_serialize; // used by deriving
66
67 #[cfg(test)]
68 extern crate test;
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 infer;
81 pub mod lint;
82
83 pub mod middle {
84     pub mod astconv_util;
85     pub mod expr_use_visitor; // STAGE0: increase glitch immunity
86     pub mod const_val;
87     pub mod const_qualif;
88     pub mod cstore;
89     pub mod dataflow;
90     pub mod dead;
91     pub mod dependency_format;
92     pub mod effect;
93     pub mod entry;
94     pub mod free_region;
95     pub mod intrinsicck;
96     pub mod lang_items;
97     pub mod liveness;
98     pub mod mem_categorization;
99     pub mod privacy;
100     pub mod reachable;
101     pub mod region;
102     pub mod recursion_limit;
103     pub mod resolve_lifetime;
104     pub mod stability;
105     pub mod weak_lang_items;
106 }
107
108 pub mod mir;
109 pub mod session;
110 pub mod traits;
111 pub mod ty;
112
113 pub mod util {
114     pub mod common;
115     pub mod ppaux;
116     pub mod nodemap;
117     pub mod num;
118     pub mod fs;
119 }
120
121 // A private module so that macro-expanded idents like
122 // `::rustc::lint::Lint` will also work in `rustc` itself.
123 //
124 // `libstd` uses the same trick.
125 #[doc(hidden)]
126 mod rustc {
127     pub use lint;
128 }
129
130 // FIXME(#27438): right now the unit tests of librustc don't refer to any actual
131 //                functions generated in librustc_data_structures (all
132 //                references are through generic functions), but statics are
133 //                referenced from time to time. Due to this bug we won't
134 //                actually correctly link in the statics unless we also
135 //                reference a function, so be sure to reference a dummy
136 //                function.
137 #[test]
138 fn noop() {
139     rustc_data_structures::__noop_fix_for_27438();
140 }
141
142
143 // Build the diagnostics array at the end so that the metadata includes error use sites.
144 __build_diagnostic_array! { librustc, DIAGNOSTICS }