From 5ae54da9c210c94577da58f232f19e673460c6f9 Mon Sep 17 00:00:00 2001 From: edef Date: Wed, 15 Apr 2015 15:58:56 -0400 Subject: [PATCH] make context public --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index ada6f94..737df8b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ pub use stack::{Stack, StackSource}; #[cfg(not(test))] mod std { pub use core::*; } -mod context; +pub mod context; pub mod stack; mod arch;