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