]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/lib.rs
Rollup merge of #30136 - fhahn:remove-int-from-doc-examples, r=steveklabnik
[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 // Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
18 #![cfg_attr(stage0, feature(custom_attribute))]
19 #![crate_name = "rustc_trans"]
20 #![unstable(feature = "rustc_private", issue = "27812")]
21 #![cfg_attr(stage0, staged_api)]
22 #![crate_type = "dylib"]
23 #![crate_type = "rlib"]
24 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
25       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26       html_root_url = "https://doc.rust-lang.org/nightly/")]
27
28 #![feature(box_patterns)]
29 #![feature(box_syntax)]
30 #![feature(const_fn)]
31 #![feature(custom_attribute)]
32 #![allow(unused_attributes)]
33 #![feature(iter_cmp)]
34 #![feature(iter_arith)]
35 #![feature(libc)]
36 #![feature(path_relative_from)]
37 #![feature(quote)]
38 #![feature(rustc_diagnostic_macros)]
39 #![feature(rustc_private)]
40 #![feature(slice_patterns)]
41 #![feature(staged_api)]
42 #![feature(unicode)]
43 #![feature(vec_push_all)]
44
45 #![allow(trivial_casts)]
46
47 extern crate arena;
48 extern crate flate;
49 extern crate getopts;
50 extern crate graphviz;
51 extern crate libc;
52 extern crate rustc;
53 extern crate rustc_back;
54 extern crate rustc_data_structures;
55 extern crate rustc_front;
56 extern crate rustc_llvm as llvm;
57 extern crate rustc_mir;
58 extern crate rustc_platform_intrinsics as intrinsics;
59 extern crate serialize;
60
61 #[macro_use] extern crate log;
62 #[macro_use] extern crate syntax;
63
64 pub use rustc::session;
65 pub use rustc::middle;
66 pub use rustc::lint;
67 pub use rustc::util;
68
69 pub mod back {
70     pub use rustc_back::abi;
71     pub use rustc_back::rpath;
72     pub use rustc_back::svh;
73
74     pub mod archive;
75     pub mod linker;
76     pub mod link;
77     pub mod lto;
78     pub mod write;
79     pub mod msvc;
80 }
81
82 pub mod diagnostics;
83
84 pub mod trans;
85 pub mod save;
86
87 pub mod lib {
88     pub use llvm;
89 }
90
91 __build_diagnostic_array! { librustc_trans, DIAGNOSTICS }