diff --git a/src/protocol/eval/mod.rs b/src/protocol/eval/mod.rs index d8dd58ddadf2283671e42215f56c632ac76c98d1..5c7b066b229f28ca73911ecd278d4d73e4fbf5f6 100644 --- a/src/protocol/eval/mod.rs +++ b/src/protocol/eval/mod.rs @@ -20,9 +20,9 @@ /// implementation would fully fill out the type table with alignment/size/ /// offset information and lay out bytecode. -mod value; -mod store; -mod executor; +pub(crate) mod value; +pub(crate) mod store; +pub(crate) mod executor; pub use value::{Value, ValueGroup}; pub(crate) use store::{Store};