rust/src/lib.rs

22 lines
326 B
Rust
Raw Normal View History

2016-04-07 11:56:07 +00:00
#![feature(
btree_range,
collections,
collections_bound,
core_intrinsics,
filling_drop,
rustc_private,
)]
// From rustc.
2016-04-07 01:00:34 +00:00
#[macro_use] extern crate rustc;
extern crate rustc_mir;
extern crate syntax;
// From crates.io.
extern crate byteorder;
2016-03-15 03:48:00 +00:00
mod error;
pub mod interpreter;
2016-03-05 06:48:23 +00:00
mod memory;
mod primval;