]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
core: Fix size_hint for signed integer Range<T> iterators
[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 // Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
18 #![cfg_attr(stage0, feature(custom_attribute))]
19 #![crate_name = "rustc"]
20 #![unstable(feature = "rustc_private")]
21 #![staged_api]
22 #![crate_type = "dylib"]
23 #![crate_type = "rlib"]
24 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
25       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
26       html_root_url = "http://doc.rust-lang.org/nightly/")]
27
28 #![feature(box_patterns)]
29 #![feature(box_syntax)]
30 #![feature(collections)]
31 #![feature(core)]
32 #![feature(hash)]
33 #![feature(libc)]
34 #![feature(quote)]
35 #![feature(rustc_diagnostic_macros)]
36 #![feature(rustc_private)]
37 #![feature(unsafe_destructor)]
38 #![feature(staged_api)]
39 #![feature(std_misc)]
40 #![feature(path_ext)]
41 #![feature(str_char)]
42 #![feature(into_cow)]
43 #![feature(slice_patterns)]
44 #![cfg_attr(test, feature(test))]
45
46 #![allow(trivial_casts)]
47
48 extern crate arena;
49 extern crate flate;
50 extern crate fmt_macros;
51 extern crate getopts;
52 extern crate graphviz;
53 extern crate libc;
54 extern crate rustc_llvm;
55 extern crate rustc_back;
56 extern crate rustc_data_structures;
57 extern crate serialize;
58 extern crate rbml;
59 extern crate collections;
60 #[macro_use] extern crate log;
61 #[macro_use] extern crate syntax;
62 #[macro_use] #[no_link] extern crate rustc_bitflags;
63
64 extern crate serialize as rustc_serialize; // used by deriving
65
66 #[cfg(test)]
67 extern crate test;
68
69 pub use rustc_llvm as llvm;
70
71 #[macro_use]
72 mod macros;
73
74 // NB: This module needs to be declared first so diagnostics are
75 // registered before they are used.
76 pub mod diagnostics;
77
78 pub mod back {
79     pub use rustc_back::abi;
80     pub use rustc_back::archive;
81     pub use rustc_back::arm;
82     pub use rustc_back::mips;
83     pub use rustc_back::mipsel;
84     pub use rustc_back::rpath;
85     pub use rustc_back::svh;
86     pub use rustc_back::target_strs;
87     pub use rustc_back::x86;
88     pub use rustc_back::x86_64;
89 }
90
91 pub mod middle {
92     pub mod astconv_util;
93     pub mod astencode;
94     pub mod cfg;
95     pub mod check_const;
96     pub mod check_static_recursion;
97     pub mod check_loop;
98     pub mod check_match;
99     pub mod check_rvalues;
100     pub mod const_eval;
101     pub mod dataflow;
102     pub mod dead;
103     pub mod def;
104     pub mod dependency_format;
105     pub mod effect;
106     pub mod entry;
107     pub mod expr_use_visitor;
108     pub mod fast_reject;
109     pub mod intrinsicck;
110     pub mod infer;
111     pub mod lang_items;
112     pub mod liveness;
113     pub mod mem_categorization;
114     pub mod pat_util;
115     pub mod privacy;
116     pub mod reachable;
117     pub mod region;
118     pub mod recursion_limit;
119     pub mod resolve_lifetime;
120     pub mod stability;
121     pub mod subst;
122     pub mod traits;
123     pub mod ty;
124     pub mod ty_fold;
125     pub mod ty_match;
126     pub mod ty_relate;
127     pub mod ty_walk;
128     pub mod weak_lang_items;
129 }
130
131 pub mod metadata;
132
133 pub mod session;
134
135 pub mod plugin;
136
137 pub mod lint;
138
139 pub mod util {
140     pub use rustc_back::fs;
141     pub use rustc_back::sha2;
142
143     pub mod common;
144     pub mod ppaux;
145     pub mod nodemap;
146     pub mod lev_distance;
147     pub mod num;
148 }
149
150 pub mod lib {
151     pub use llvm;
152 }
153
154 // A private module so that macro-expanded idents like
155 // `::rustc::lint::Lint` will also work in `rustc` itself.
156 //
157 // `libstd` uses the same trick.
158 #[doc(hidden)]
159 mod rustc {
160     pub use lint;
161 }