]>
Commit | Line | Data |
---|---|---|
e9174d1e SL |
1 | // Copyright 2015 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 | ||
e9174d1e SL |
17 | #![crate_name = "rustc_front"] |
18 | #![unstable(feature = "rustc_private", issue = "27812")] | |
e9174d1e SL |
19 | #![crate_type = "dylib"] |
20 | #![crate_type = "rlib"] | |
21 | #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", | |
7453a54e SL |
22 | html_favicon_url = "https://doc.rust-lang.org/favicon.ico", |
23 | html_root_url = "http://doc.rust-lang.org/nightly/")] | |
24 | #![cfg_attr(not(stage0), deny(warnings))] | |
e9174d1e SL |
25 | |
26 | #![feature(associated_consts)] | |
27 | #![feature(box_patterns)] | |
28 | #![feature(box_syntax)] | |
29 | #![feature(const_fn)] | |
30 | #![feature(quote)] | |
31 | #![feature(rustc_diagnostic_macros)] | |
32 | #![feature(rustc_private)] | |
33 | #![feature(slice_patterns)] | |
34 | #![feature(staged_api)] | |
35 | #![feature(str_char)] | |
e9174d1e SL |
36 | |
37 | extern crate serialize; | |
b039eaaf SL |
38 | #[macro_use] |
39 | extern crate log; | |
40 | #[macro_use] | |
41 | extern crate syntax; | |
42 | #[macro_use] | |
43 | #[no_link] | |
44 | extern crate rustc_bitflags; | |
e9174d1e SL |
45 | |
46 | extern crate serialize as rustc_serialize; // used by deriving | |
47 | ||
9cc50fc6 | 48 | #[macro_use] |
e9174d1e SL |
49 | pub mod hir; |
50 | pub mod lowering; | |
51 | pub mod fold; | |
92a42be0 | 52 | pub mod intravisit; |
e9174d1e SL |
53 | pub mod util; |
54 | ||
55 | pub mod print { | |
56 | pub mod pprust; | |
57 | } |