]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
Set allow(unstable) in crates that use unstable features
[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 #![unstable]
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 #![allow(unknown_features)] #![feature(int_uint)]
32 #![allow(unstable)]
33
34 extern crate arena;
35 extern crate flate;
36 extern crate getopts;
37 extern crate graphviz;
38 extern crate libc;
39 extern crate rustc;
40 extern crate rustc_back;
41 extern crate serialize;
42 extern crate "rustc_llvm" as llvm;
43
44 #[macro_use] extern crate log;
45 #[macro_use] extern crate syntax;
46
47 pub use rustc::session;
48 pub use rustc::metadata;
49 pub use rustc::middle;
50 pub use rustc::lint;
51 pub use rustc::plugin;
52 pub use rustc::util;
53
54 pub mod back {
55     pub use rustc_back::abi;
56     pub use rustc_back::archive;
57     pub use rustc_back::arm;
58     pub use rustc_back::mips;
59     pub use rustc_back::mipsel;
60     pub use rustc_back::rpath;
61     pub use rustc_back::svh;
62     pub use rustc_back::target_strs;
63     pub use rustc_back::x86;
64     pub use rustc_back::x86_64;
65
66     pub mod link;
67     pub mod lto;
68     pub mod write;
69
70 }
71
72 pub mod trans;
73 pub mod save;
74
75 pub mod lib {
76     pub use llvm;
77 }