From 71cc53432c33fde78ac6949fa63903c650b84784 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott <ian@iandouglasscott.com> Date: Sat, 30 Jun 2018 12:49:04 -0700 Subject: [PATCH] Make `types` module `pub` This module is helpful when embedding ion as a library. --- src/lib/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/lib.rs b/src/lib/lib.rs index d9f9bbad..fa97f4fb 100644 --- a/src/lib/lib.rs +++ b/src/lib/lib.rs @@ -37,7 +37,7 @@ extern crate ion_lexers as lexers; extern crate ion_ranges as ranges; #[macro_use] -mod types; +pub mod types; #[macro_use] pub mod parser; mod ascii_helpers; -- GitLab