]> git.lizzy.rs Git - rust.git/blob - src/librustc/lib.rs
Fallout of std::old_io deprecation
[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(int_uint)]
34 #![feature(libc)]
35 #![feature(old_path)]
36 #![feature(quote)]
37 #![feature(rustc_diagnostic_macros)]
38 #![feature(rustc_private)]
39 #![feature(unsafe_destructor)]
40 #![feature(staged_api)]
41 #![feature(std_misc)]
42 #![feature(io)]
43 #![feature(path_ext)]
44 #![feature(str_words)]
45 #![cfg_attr(test, feature(test))]
46
47 extern crate arena;
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;
54 extern crate rustc_back;
55 extern crate serialize;
56 extern crate rbml;
57 extern crate collections;
58 #[macro_use] extern crate log;
59 #[macro_use] extern crate syntax;
60 #[macro_use] #[no_link] extern crate rustc_bitflags;
61
62 extern crate "serialize" as rustc_serialize; // used by deriving
63
64 #[cfg(test)]
65 extern crate test;
66
67 pub use rustc_llvm as llvm;
68
69 // NB: This module needs to be declared first so diagnostics are
70 // registered before they are used.
71 pub mod diagnostics;
72
73 pub mod back {
74     pub use rustc_back::abi;
75     pub use rustc_back::archive;
76     pub use rustc_back::arm;
77     pub use rustc_back::mips;
78     pub use rustc_back::mipsel;
79     pub use rustc_back::rpath;
80     pub use rustc_back::svh;
81     pub use rustc_back::target_strs;
82     pub use rustc_back::x86;
83     pub use rustc_back::x86_64;
84 }
85
86 pub mod middle {
87     pub mod astconv_util;
88     pub mod astencode;
89     pub mod cfg;
90     pub mod check_const;
91     pub mod check_static_recursion;
92     pub mod check_loop;
93     pub mod check_match;
94     pub mod check_rvalues;
95     pub mod const_eval;
96     pub mod dataflow;
97     pub mod dead;
98     pub mod def;
99     pub mod dependency_format;
100     pub mod effect;
101     pub mod entry;
102     pub mod expr_use_visitor;
103     pub mod fast_reject;
104     pub mod graph;
105     pub mod intrinsicck;
106     pub mod infer;
107     pub mod lang_items;
108     pub mod liveness;
109     pub mod mem_categorization;
110     pub mod pat_util;
111     pub mod privacy;
112     pub mod reachable;
113     pub mod region;
114     pub mod recursion_limit;
115     pub mod resolve_lifetime;
116     pub mod stability;
117     pub mod subst;
118     pub mod traits;
119     pub mod ty;
120     pub mod ty_fold;
121     pub mod ty_walk;
122     pub mod weak_lang_items;
123 }
124
125 pub mod metadata;
126
127 pub mod session;
128
129 pub mod plugin;
130
131 pub mod lint;
132
133 pub mod util {
134     pub use rustc_back::fs;
135     pub use rustc_back::sha2;
136
137     pub mod common;
138     pub mod ppaux;
139     pub mod nodemap;
140     pub mod snapshot_vec;
141     pub mod lev_distance;
142 }
143
144 pub mod lib {
145     pub use llvm;
146 }
147
148 // A private module so that macro-expanded idents like
149 // `::rustc::lint::Lint` will also work in `rustc` itself.
150 //
151 // `libstd` uses the same trick.
152 #[doc(hidden)]
153 mod rustc {
154     pub use lint;
155 }