summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorHendrik Sollich <hendrik@hoodie.de>2016-11-11 23:29:27 +0100
committerHendrik Sollich <hendrik@hoodie.de>2016-11-11 23:29:27 +0100
commitff7df7f8b735dce2eda541298d2ab9a6eba25f22 (patch)
treea89bf6b1043638aa77f985914c38265c72c85ef4 /src/lib.rs
parent4ed3dffa2fc4fc2a3c1f263e00620f769b35411f (diff)
supporting date only start/end
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 86a3d65..5a5977c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,8 +2,6 @@
//! This is still just an early idea, there is nothing implemented,
//! I haven't even read the [spec](http://tools.ietf.org/html/rfc5545) yet.
//!
-//! I'd love to create iCal files with a very [diesel](https://diesel.rs/) or [active support](https://github.com/wycats/rust-activesupport) like syntax.
-//!
//! ## Structure
//! * `Calendar`s consist of `Components`
//! * `Component`s are e.g. `Event` or `Todo`
@@ -22,7 +20,7 @@ mod properties;
mod calendar;
pub mod repeats;
-//pub use components::{Property, Parameter, Component};
+pub use properties::{Property, Parameter};
//pub use components::{event, todo};
pub use components::{Event, Todo, Component};
pub use properties::Class;