From 9855084890a2512a4752cb525a30034a883bafc5 Mon Sep 17 00:00:00 2001 From: edef Date: Wed, 15 Apr 2015 15:58:44 -0400 Subject: [PATCH] make stack public --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b23bace..ada6f94 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;