summaryrefslogtreecommitdiffstats
path: root/src/icalwrap/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/icalwrap/mod.rs')
-rw-r--r--src/icalwrap/mod.rs26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/icalwrap/mod.rs b/src/icalwrap/mod.rs
deleted file mode 100644
index e52aabe..0000000
--- a/src/icalwrap/mod.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-mod icalcomponent;
-mod icalduration;
-mod icalproperty;
-mod icaltime;
-mod icaltimezone;
-mod icalvcalendar;
-mod icalvevent;
-
-// libical does some weird, non-threadsafe things in timezone methods, notably
-// icaltime_convert_to_zone (which is also called in icaltime_as_timet_with_zone)
-// see these two (independent!) bugs:
-// https://github.com/libical/libical/issues/86
-// https://github.com/libical/libical/commit/0ebf2d9a7183be94991c2681c6e3f009c64cf7cc
-use std::sync::Mutex;
-lazy_static! {
- static ref TZ_MUTEX: Mutex<i32> = Mutex::new(0);
-}
-
-pub use self::icalcomponent::IcalComponent;
-pub use self::icalduration::IcalDuration;
-pub use self::icalproperty::IcalProperty;
-pub use self::icaltime::IcalTime;
-pub use self::icaltimezone::IcalTimeZone;
-pub use self::icalvcalendar::IcalEventIter;
-pub use self::icalvcalendar::IcalVCalendar;
-pub use self::icalvevent::IcalVEvent;