From e5575b782c5fc0f2619067a1ca54889fc0f77132 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Wed, 28 Aug 2019 12:20:20 -0700 Subject: [PATCH] Hide project module, moving towards Rojo API --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 7e1f570c..ed140a1d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,6 +6,10 @@ mod impl_from; // Other modules pub mod commands; + +// This module is only public for the purpose of testing right now, and won't be +// part of the first version of the Rojo API. +#[doc(hidden)] pub mod project; mod imfs;