]> git.proxmox.com Git - rustc.git/blame - src/librustc_front/lib.rs
Merge tag 'upstream/1.5.0+dfsg1'
[rustc.git] / src / librustc_front / lib.rs
CommitLineData
e9174d1e
SL
1// Copyright 2015 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_front"]
20#![unstable(feature = "rustc_private", issue = "27812")]
21#![staged_api]
22#![crate_type = "dylib"]
23#![crate_type = "rlib"]
24#![doc(html_logo_url = "http://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 = "http://doc.rust-lang.org/nightly/")]
27
28#![feature(associated_consts)]
29#![feature(box_patterns)]
30#![feature(box_syntax)]
31#![feature(const_fn)]
32#![feature(quote)]
33#![feature(rustc_diagnostic_macros)]
34#![feature(rustc_private)]
35#![feature(slice_patterns)]
36#![feature(staged_api)]
37#![feature(str_char)]
38#![feature(filling_drop)]
e9174d1e
SL
39
40extern crate serialize;
b039eaaf
SL
41#[macro_use]
42extern crate log;
43#[macro_use]
44extern crate syntax;
45#[macro_use]
46#[no_link]
47extern crate rustc_bitflags;
e9174d1e
SL
48
49extern crate serialize as rustc_serialize; // used by deriving
50
51pub mod hir;
52pub mod lowering;
53pub mod fold;
54pub mod visit;
e9174d1e
SL
55pub mod util;
56
57pub mod print {
58 pub mod pprust;
59}