mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00
17 lines
341 B
Rust
17 lines
341 B
Rust
#![feature(btree_range, collections, collections_bound, core_intrinsics, rustc_private)]
|
|
|
|
// From rustc.
|
|
extern crate arena;
|
|
#[macro_use] extern crate rustc;
|
|
extern crate rustc_data_structures;
|
|
extern crate rustc_mir;
|
|
extern crate syntax;
|
|
|
|
// From crates.io.
|
|
extern crate byteorder;
|
|
|
|
mod error;
|
|
pub mod interpreter;
|
|
mod memory;
|
|
mod primval;
|