]> git.proxmox.com Git - rustc.git/blame - src/librustc_metadata/lib.rs
Imported Upstream version 1.10.0+dfsg1
[rustc.git] / src / librustc_metadata / lib.rs
CommitLineData
92a42be0
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
92a42be0
SL
11#![crate_name = "rustc_metadata"]
12#![unstable(feature = "rustc_private", issue = "27812")]
92a42be0
SL
13#![crate_type = "dylib"]
14#![crate_type = "rlib"]
15#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
7453a54e
SL
16 html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
17 html_root_url = "https://doc.rust-lang.org/nightly/")]
18#![cfg_attr(not(stage0), deny(warnings))]
92a42be0
SL
19
20#![feature(box_patterns)]
21#![feature(enumset)]
22#![feature(quote)]
23#![feature(rustc_diagnostic_macros)]
24#![feature(rustc_private)]
25#![feature(staged_api)]
54a0048b 26#![feature(question_mark)]
92a42be0
SL
27
28#[macro_use] extern crate log;
29#[macro_use] extern crate syntax;
30#[macro_use] #[no_link] extern crate rustc_bitflags;
31
32extern crate flate;
33extern crate rbml;
a7813a04 34extern crate serialize as rustc_serialize; // used by deriving
92a42be0 35
54a0048b 36#[macro_use]
92a42be0
SL
37extern crate rustc;
38extern crate rustc_back;
92a42be0 39extern crate rustc_llvm;
54a0048b 40extern crate rustc_const_math;
92a42be0
SL
41
42pub use rustc::middle;
43
44#[macro_use]
45mod macros;
46
47pub mod diagnostics;
48
49pub mod astencode;
50pub mod common;
a7813a04 51pub mod def_key;
92a42be0
SL
52pub mod tyencode;
53pub mod tydecode;
54pub mod encoder;
55pub mod decoder;
56pub mod creader;
57pub mod csearch;
58pub mod cstore;
59pub mod index;
60pub mod loader;
61pub mod macro_import;
9cc50fc6 62pub mod tls_context;