]> git.lizzy.rs Git - rust.git/blob - src/lib.rs
stepwise interpretation
[rust.git] / src / lib.rs
1 #![feature(
2     btree_range,
3     collections,
4     collections_bound,
5     core_intrinsics,
6     filling_drop,
7     question_mark,
8     rustc_private,
9     pub_restricted,
10 )]
11
12 // From rustc.
13 #[macro_use] extern crate rustc;
14 extern crate rustc_mir;
15 extern crate syntax;
16 #[macro_use] extern crate log;
17 extern crate log_settings;
18
19 // From crates.io.
20 extern crate byteorder;
21
22 mod error;
23 pub mod interpreter;
24 mod memory;
25 mod primval;