1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
#![feature(rustc_private, box_syntax)]
#![feature(nll)]
#![feature(rustc_attrs)]
#![feature(slice_patterns)]
#![feature(step_trait)]
#[macro_use]
extern crate bitflags;
extern crate serialize;
#[macro_use] extern crate log;
extern crate serialize as rustc_serialize;
#[allow(unused_extern_crates)]
extern crate rustc_cratesio_shim;
#[macro_use]
extern crate rustc_data_structures;
pub mod abi;
pub mod spec;