]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
rollup merge of #20608: nikomatsakis/assoc-types-method-dispatch
[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 #![crate_type = "dylib"]
20 #![crate_type = "rlib"]
21 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
22       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
23       html_root_url = "http://doc.rust-lang.org/nightly/")]
24
25 #![allow(unknown_features)]
26 #![feature(default_type_params, globs, macro_rules, phase, quote)]
27 #![feature(slicing_syntax, unsafe_destructor)]
28 #![feature(rustc_diagnostic_macros)]
29 #![feature(unboxed_closures)]
30 #![feature(old_orphan_check)]
31 #![feature(associated_types)]
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 #[phase(plugin, link)] extern crate log;
41 #[phase(plugin, link)] extern crate syntax;
42 extern crate serialize;
43 extern crate "rustc_llvm" as llvm;
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 }