summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorVincent Breitmoser <look@my.amazin.horse>2019-01-09 22:19:55 +0100
committerVincent Breitmoser <look@my.amazin.horse>2019-01-09 22:23:55 +0100
commitaba45db5b3f0b437958194c8bdf9f4b934c7ad91 (patch)
tree3d9b38a340307131f15c3592e6c501931121289f /src/lib.rs
parent180a393ff65ce96cfd235c1cf8858ca38c9d7b28 (diff)
index: write indexing time to file
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 8816b9c..3aa72e2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -7,6 +7,7 @@ pub mod defaults;
pub mod edit;
pub mod icalwrap;
pub mod index;
+pub mod indextime;
pub mod list;
pub mod modify;
pub mod new;
@@ -18,11 +19,15 @@ pub mod show;
pub mod sort;
pub mod unroll;
pub mod utils;
+#[cfg(test)]
+pub mod testutils;
#[cfg(test)]
pub mod testdata;
#[cfg(test)]
extern crate tempfile;
+#[cfg(test)]
+extern crate assert_fs;
extern crate chrono;
extern crate fs2;