From 1ba7fa469d04530444eb0bc6d7c9ee2fd41457f6 Mon Sep 17 00:00:00 2001 From: Pro Date: Fri, 9 Feb 2024 21:53:42 +0100 Subject: Bump edition to 2021 and introduce rustfmt --- src/lib.rs | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) (limited to 'src/lib.rs') 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; - -- cgit v1.2.3