summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 39a0362..38ea59a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,12 +3,18 @@
#[macro_use]
extern crate error_chain;
+#[cfg(feature = "timeconversions")]
+extern crate chrono;
+
#[macro_use] pub mod param;
+#[macro_use] mod util;
+
pub mod component;
pub mod error;
mod parser;
pub mod property;
pub mod vcard;
+pub mod icalendar;
pub use component::Component;
pub use component::parse_component;