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