summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs24
1 files changed, 3 insertions, 21 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 6479ad2..5b37f8a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,27 +1,9 @@
-#![recursion_limit="256"]
-
-extern crate thiserror;
-extern crate chrono;
-
-#[macro_use]
-extern crate nom;
-extern crate iso8601;
-
-#[cfg(feature = "with-filters")]
-extern crate filters;
-
-#[cfg(test)]
-extern crate env_logger;
-
-#[cfg(test)]
-#[macro_use]
-extern crate log;
+#![recursion_limit = "256"]
pub mod error;
-pub mod iter;
-pub mod timetype;
pub mod indicator;
+pub mod iter;
pub mod matcher;
pub mod parser;
+pub mod timetype;
mod util;
-