summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-12-20 12:20:38 +0100
committerGitHub <noreply@github.com>2019-12-20 12:20:38 +0100
commit4e065267398aaedcf827a3a26f11b0cba8d9bb19 (patch)
treec9d75e83ccd8b248cc605a6ee3f8fdc4530bca3e /src/lib.rs
parent38ae919c11cc596fa927b2d8bd95b828a2e8045b (diff)
parentf8e22561f0bf9164d2094d45360f898fe525b693 (diff)
Merge pull request #9 from matthiasbeyer/doc
Document all the things
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 71579d8..d0fc056 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,3 +1,11 @@
+//! libical high level interface
+//!
+//! This library offers a high-level interface for the widely used libical. It relies upon the
+//! libical-sys crate, which is a thin rust layer over the libical C API.
+//! It provides a safe interface to libical that is rather lower-level, as well as convenience
+//! functionality build on this low-level interface for easy handling of icalendar data.
+//!
+
#![warn(unused_extern_crates)]
#![allow(clippy::redundant_closure)] // disable "redundant closure" lint
@@ -48,3 +56,4 @@ pub use crate::timezone::IcalTimeZone;
pub use crate::vcalendar::IcalEventIter;
pub use crate::vcalendar::IcalVCalendar;
pub use crate::vevent::IcalVEvent;
+