//! Crontab.rs is a library for parsing cron schedule expressions.
#![deny(deprecated)]#![deny(missing_docs)]#![deny(unreachable_patterns)]#![deny(unused_extern_crates)]#![deny(unused_imports)]#![deny(unused_qualifications)]externcrate time;#[cfg(test)]#[macro_use(expect)]externcrate expectest;// TODO: Get rid of these.
#[cfg(test)]modtest_helpers;modcrontab;moderror;modparsing;modtimes;// Exports
pubusecrontab::Crontab;pubuseparsing::ScheduleComponents;// Re-exports.
pubusetime::Tm;