rust/src/lib.rs

23 lines
345 B
Rust
Raw Normal View History

2016-04-07 05:56:07 -06:00
#![feature(
btree_range,
collections,
collections_bound,
core_intrinsics,
filling_drop,
2016-05-09 18:52:44 -06:00
question_mark,
2016-04-07 05:56:07 -06:00
rustc_private,
)]
// From rustc.
2016-04-06 19:00:34 -06:00
#[macro_use] extern crate rustc;
extern crate rustc_mir;
extern crate syntax;
// From crates.io.
extern crate byteorder;
2016-03-14 21:48:00 -06:00
mod error;
pub mod interpreter;
2016-03-05 00:48:23 -06:00
mod memory;
mod primval;