diff options
author | Hendrik Sollich <hendrik@hoodie.de> | 2016-11-11 23:29:27 +0100 |
---|---|---|
committer | Hendrik Sollich <hendrik@hoodie.de> | 2016-11-11 23:29:27 +0100 |
commit | ff7df7f8b735dce2eda541298d2ab9a6eba25f22 (patch) | |
tree | a89bf6b1043638aa77f985914c38265c72c85ef4 /src/lib.rs | |
parent | 4ed3dffa2fc4fc2a3c1f263e00620f769b35411f (diff) |
supporting date only start/end
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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; |