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