summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorPro <twisted.fall@gmail.com>2024-02-09 21:53:42 +0100
committerPro <twisted.fall@gmail.com>2024-02-09 21:53:42 +0100
commit1ba7fa469d04530444eb0bc6d7c9ee2fd41457f6 (patch)
treecc732a509acad26a5f484246eefaddddde776154 /src/lib.rs
parent3fe862d63b4be68f62f8de737c5322ce22ea8dd9 (diff)
Bump edition to 2021 and introduce rustfmt
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs23
1 files changed, 3 insertions, 20 deletions
diff --git a/src/lib.rs b/src/lib.rs
index b9e85c1..5b37f8a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,26 +1,9 @@
-#![recursion_limit="256"]
-
-extern crate thiserror;
-extern crate chrono;
-
-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;
-