ocron 0.2.0

Cron implementation with an obvious configuration format
ocron-0.2.0 is not a library.

OCRON

OCRON is a cron implementation with an obvious configuration format instead of the usual crontab. The format is using TOML.

Usage

To try it out run:

cargo run -- example.toml

or

cargo build && target/debug/ocron example.toml

The example runs date +%H:%M:%S each whole 10 seconds on Mondays and Fridays.

For documentation on the configuration options see example.toml.

Note that OCRON uses a patched version of TOML which allows "inline" tables to span multiple lines, if you install from crates.io the vanilla TOML is used instead.