make stack public

master
edef 2015-04-15 15:58:44 -04:00
parent 7aa58f43f7
commit 9855084890
1 changed files with 2 additions and 1 deletions

View File

@ -11,12 +11,13 @@ extern crate core;
extern crate std;
pub use context::Context;
pub use stack::{Stack, StackSource};
#[cfg(not(test))]
mod std { pub use core::*; }
mod context;
mod stack;
pub mod stack;
mod arch;
mod platform;