summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index fe9ee3b..9cc58b0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -38,7 +38,7 @@
//! )
//! .done();
//!
-//! let todo = Todo::new().summary("Buy some milk").done();
+//! //let todo = Todo::new().summary("Buy some milk").done();
//!
//!
//! let mut calendar = Calendar::new();
@@ -57,6 +57,11 @@
missing_debug_implementations
)]
+extern crate chrono;
+extern crate uuid;
+#[macro_use]
+extern crate nom;
+
macro_rules! print_crlf {
() => (print!("\r\n"));
($fmt:expr) => (print!(concat!($fmt, "\r\n")));
@@ -79,6 +84,7 @@ macro_rules! write_crlf {
mod components;
mod properties;
mod calendar;
+pub mod parse;
//pub mod repeats;
pub use crate::properties::{Property, Parameter, Class, ValueType};