2016-04-07 06:56:07 -05:00
|
|
|
#![feature(
|
|
|
|
btree_range,
|
|
|
|
collections,
|
|
|
|
collections_bound,
|
|
|
|
core_intrinsics,
|
|
|
|
filling_drop,
|
2016-05-09 19:52:44 -05:00
|
|
|
question_mark,
|
2016-04-07 06:56:07 -05:00
|
|
|
rustc_private,
|
|
|
|
)]
|
2015-11-21 21:20:06 -06:00
|
|
|
|
2016-03-17 06:32:00 -05:00
|
|
|
// From rustc.
|
2016-04-06 20:00:34 -05:00
|
|
|
#[macro_use] extern crate rustc;
|
2015-11-21 21:20:06 -06:00
|
|
|
extern crate rustc_mir;
|
|
|
|
extern crate syntax;
|
2016-05-30 11:09:52 -05:00
|
|
|
#[macro_use] extern crate log;
|
|
|
|
extern crate log_settings;
|
2015-11-21 21:20:06 -06:00
|
|
|
|
2016-03-17 06:32:00 -05:00
|
|
|
// From crates.io.
|
|
|
|
extern crate byteorder;
|
|
|
|
|
2016-03-14 22:48:00 -05:00
|
|
|
mod error;
|
2015-11-21 21:20:06 -06:00
|
|
|
pub mod interpreter;
|
2016-03-05 00:48:23 -06:00
|
|
|
mod memory;
|
2016-03-13 01:43:28 -06:00
|
|
|
mod primval;
|