rust/src/lib.rs

63 lines
872 B
Rust
Raw Normal View History

2016-04-07 11:56:07 +00:00
#![feature(
btree_range,
cell_extras,
2016-04-07 11:56:07 +00:00
collections,
collections_bound,
2016-06-01 15:05:20 +00:00
pub_restricted,
rustc_private,
2016-04-07 11:56:07 +00:00
)]
// From rustc.
#[macro_use]
extern crate log;
extern crate log_settings;
#[macro_use]
extern crate rustc;
extern crate rustc_borrowck;
extern crate rustc_const_math;
2016-06-11 18:38:28 +00:00
extern crate rustc_data_structures;
extern crate rustc_mir;
extern crate syntax;
// From crates.io.
extern crate byteorder;
mod cast;
2016-03-15 03:48:00 +00:00
mod error;
mod eval_context;
2016-03-05 06:48:23 +00:00
mod memory;
mod primval;
mod step;
mod terminator;
mod value;
mod vtable;
pub use error::{
EvalError,
EvalResult,
};
pub use eval_context::{
EvalContext,
Frame,
Lvalue,
LvalueExtra,
2016-11-27 01:54:19 +00:00
ResourceLimits,
StackPopCleanup,
Value,
eval_main,
run_mir_passes,
};
pub use memory::{
Memory,
Pointer,
AllocId,
};
pub use primval::{
PrimVal,
PrimValKind,
};