From cbfb62e62f840bd8caca63608dad13b56a0a71ed Mon Sep 17 00:00:00 2001 From: edef Date: Thu, 16 Apr 2015 07:25:05 -0400 Subject: [PATCH] only expose context and stack through the facade It's fairly pointless to have submodules when there are only three items. --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 097ca94..6a30d37 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,8 +18,8 @@ pub use stack::{Stack, StackSource}; #[cfg(not(test))] mod std { pub use core::*; } -pub mod context; -pub mod stack; +mod context; +mod stack; mod debug;