]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
rollup merge of #20723: pnkfelix/feature-gate-box-syntax
[rust.git] / src / librustc_trans / 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_trans"]
18 #![experimental]
19 #![staged_api]
20 #![crate_type = "dylib"]
21 #![crate_type = "rlib"]
22 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
23       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
24       html_root_url = "http://doc.rust-lang.org/nightly/")]
25
26 #![allow(unknown_features)]
27 #![feature(quote)]
28 #![feature(slicing_syntax, unsafe_destructor)]
29 #![feature(box_syntax)]
30 #![feature(rustc_diagnostic_macros)]
31
32 extern crate arena;
33 extern crate flate;
34 extern crate getopts;
35 extern crate graphviz;
36 extern crate libc;
37 extern crate rustc;
38 extern crate rustc_back;
39 extern crate serialize;
40 extern crate "rustc_llvm" as llvm;
41
42 #[macro_use] extern crate log;
43 #[macro_use] extern crate syntax;
44
45 pub use rustc::session;
46 pub use rustc::metadata;
47 pub use rustc::middle;
48 pub use rustc::lint;
49 pub use rustc::plugin;
50 pub use rustc::util;
51
52 pub mod back {
53     pub use rustc_back::abi;
54     pub use rustc_back::archive;
55     pub use rustc_back::arm;
56     pub use rustc_back::mips;
57     pub use rustc_back::mipsel;
58     pub use rustc_back::rpath;
59     pub use rustc_back::svh;
60     pub use rustc_back::target_strs;
61     pub use rustc_back::x86;
62     pub use rustc_back::x86_64;
63
64     pub mod link;
65     pub mod lto;
66     pub mod write;
67
68 }
69
70 pub mod trans;
71 pub mod save;
72
73 pub mod lib {
74     pub use llvm;
75 }