aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorRuben Pollan2018-11-26 13:10:38 -0600
committerRuben Pollan2018-11-26 13:10:38 -0600
commit3cb2a06d610d4e8121449ab09210c0f9a7414860 (patch)
tree4a25fcf3f5679858dece9d7c03016da86cbc69b4 /src/lib.rs
parente11ee60b2619a0137e24420a5de98112ecfd4ba7 (diff)
Convert the project into a lib + main
Diffstat (limited to '')
-rw-r--r--src/lib.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..85ba6c0
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,13 @@
+extern crate ical;
+extern crate chrono;
+extern crate chrono_tz;
+
+mod date;
+mod event;
+mod periodic;
+mod calendar;
+mod errors;
+
+pub use calendar::Calendar;
+pub use date::Date;
+pub use chrono::Duration;