rust/src/lib.rs

17 lines
315 B
Rust
Raw Normal View History

#![feature(btree_range, collections_bound, core_intrinsics, rustc_private)]
// From rustc.
extern crate arena;
extern crate rustc;
extern crate rustc_data_structures;
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;