]> git.proxmox.com Git - rustc.git/blame - src/librustc/lib.rs
Imported Upstream version 1.0.0~beta.3
[rustc.git] / src / librustc / lib.rs
CommitLineData
1a4d82fc
JJ
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
c34b1796
AL
17// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
18#![cfg_attr(stage0, feature(custom_attribute))]
1a4d82fc 19#![crate_name = "rustc"]
85aaf69f 20#![unstable(feature = "rustc_private")]
1a4d82fc
JJ
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
85aaf69f 28#![feature(box_patterns)]
1a4d82fc 29#![feature(box_syntax)]
85aaf69f
SL
30#![feature(collections)]
31#![feature(core)]
32#![feature(hash)]
85aaf69f 33#![feature(libc)]
85aaf69f 34#![feature(quote)]
1a4d82fc 35#![feature(rustc_diagnostic_macros)]
85aaf69f
SL
36#![feature(rustc_private)]
37#![feature(unsafe_destructor)]
38#![feature(staged_api)]
39#![feature(std_misc)]
c34b1796
AL
40#![feature(path_ext)]
41#![feature(str_words)]
42#![feature(str_char)]
43#![feature(into_cow)]
44#![feature(slice_patterns)]
85aaf69f 45#![cfg_attr(test, feature(test))]
1a4d82fc 46
c34b1796
AL
47#![allow(trivial_casts)]
48
1a4d82fc
JJ
49extern crate arena;
50extern crate flate;
85aaf69f 51extern crate fmt_macros;
1a4d82fc
JJ
52extern crate getopts;
53extern crate graphviz;
54extern crate libc;
55extern crate rustc_llvm;
56extern crate rustc_back;
57extern crate serialize;
58extern crate rbml;
59extern crate collections;
60#[macro_use] extern crate log;
61#[macro_use] extern crate syntax;
85aaf69f 62#[macro_use] #[no_link] extern crate rustc_bitflags;
1a4d82fc 63
c34b1796 64extern crate serialize as rustc_serialize; // used by deriving
1a4d82fc
JJ
65
66#[cfg(test)]
67extern crate test;
68
69pub use rustc_llvm as llvm;
70
9346a6ac
AL
71#[macro_use]
72mod macros;
73
85aaf69f
SL
74// NB: This module needs to be declared first so diagnostics are
75// registered before they are used.
76pub mod diagnostics;
1a4d82fc
JJ
77
78pub 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
91pub 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;
1a4d82fc
JJ
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 graph;
110 pub mod intrinsicck;
111 pub mod infer;
112 pub mod lang_items;
113 pub mod liveness;
114 pub mod mem_categorization;
115 pub mod pat_util;
116 pub mod privacy;
117 pub mod reachable;
118 pub mod region;
119 pub mod recursion_limit;
120 pub mod resolve_lifetime;
121 pub mod stability;
122 pub mod subst;
123 pub mod traits;
124 pub mod ty;
125 pub mod ty_fold;
c34b1796
AL
126 pub mod ty_match;
127 pub mod ty_relate;
1a4d82fc
JJ
128 pub mod ty_walk;
129 pub mod weak_lang_items;
130}
131
132pub mod metadata;
133
134pub mod session;
135
136pub mod plugin;
137
138pub mod lint;
139
140pub mod util {
141 pub use rustc_back::fs;
142 pub use rustc_back::sha2;
143
144 pub mod common;
145 pub mod ppaux;
146 pub mod nodemap;
147 pub mod snapshot_vec;
148 pub mod lev_distance;
9346a6ac 149 pub mod num;
1a4d82fc
JJ
150}
151
152pub mod lib {
153 pub use llvm;
154}
155
1a4d82fc
JJ
156// A private module so that macro-expanded idents like
157// `::rustc::lint::Lint` will also work in `rustc` itself.
158//
159// `libstd` uses the same trick.
160#[doc(hidden)]
161mod rustc {
162 pub use lint;
163}