summaryrefslogtreecommitdiff
path: root/dhall_core/src/lib.rs
diff options
context:
space:
mode:
authorNadrieril2019-03-21 15:11:55 +0100
committerNadrieril2019-03-21 15:37:02 +0100
commit7bbf42dc5d3727dffcb036ffe30dd433faff1950 (patch)
tree16ec59df8c3a834e0c0380dd141c18e052453bb3 /dhall_core/src/lib.rs
parenta304bce542c7685ca02e96e01143dcc69f920f36 (diff)
Reorganize dhall_core a bit
Diffstat (limited to 'dhall_core/src/lib.rs')
-rw-r--r--dhall_core/src/lib.rs13
1 files changed, 11 insertions, 2 deletions
diff --git a/dhall_core/src/lib.rs b/dhall_core/src/lib.rs
index 6215456..0874b09 100644
--- a/dhall_core/src/lib.rs
+++ b/dhall_core/src/lib.rs
@@ -6,7 +6,16 @@
clippy::new_without_default
)]
-pub mod core;
+mod core;
pub use crate::core::*;
+mod import;
+pub use crate::import::*;
+mod label;
+pub use crate::label::*;
+mod text;
+pub use crate::text::*;
+mod printer;
+pub use crate::printer::*;
+mod parser;
+pub use crate::parser::*;
pub mod context;
-pub mod parser;