schedule 0.1.0

An in-process scheduler for periodic jobs. Schedule lets you run Rust functions on a cron-like schedule.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate chrono;

#[macro_use]
extern crate nom;

mod parser;
mod schedule;
mod job;
mod agenda;

pub use agenda::Agenda;

pub use job::Job;

pub use schedule::Schedule;