rust/src/lib.rs

12 lines
207 B
Rust
Raw Normal View History

2016-03-13 15:36:25 -05:00
#![feature(btree_range, collections_bound, rustc_private)]
extern crate byteorder;
extern crate rustc;
extern crate rustc_mir;
extern crate syntax;
2016-03-14 22:48:00 -05:00
mod error;
pub mod interpreter;
2016-03-05 00:48:23 -06:00
mod memory;
mod primval;