summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7aeab51..8f7fed9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,6 +2,9 @@
extern crate error_chain;
extern crate chrono;
+#[macro_use]
+extern crate peg;
+
#[cfg(feature = "with-filters")]
extern crate filters;
@@ -17,5 +20,6 @@ pub mod iter;
pub mod timetype;
pub mod indicator;
pub mod matcher;
+pub mod parser;
mod util;