9 unstable releases

Uses old Rust 2015

0.5.1 Jul 11, 2016
0.5.0 Jan 21, 2016
0.4.1 Jan 10, 2016
0.4.0 Jul 5, 2015
0.1.2 Jul 4, 2015

#75 in #cron

Download history 119/week @ 2024-06-04 118/week @ 2024-06-11 131/week @ 2024-06-18 133/week @ 2024-06-25 177/week @ 2024-07-02 137/week @ 2024-07-09 146/week @ 2024-07-16 122/week @ 2024-07-23 146/week @ 2024-07-30 141/week @ 2024-08-06 141/week @ 2024-08-13 134/week @ 2024-08-20 93/week @ 2024-08-27 71/week @ 2024-09-03 113/week @ 2024-09-10 134/week @ 2024-09-17

427 downloads per month
Used in systemd-crontab-generator

MIT/Apache

38KB
1K SLoC

Crontab files parser

Alpha version

Documentation

Usage:

[dependencies]
cronparse = "*"
extern crate cronparse;

use cronparse::crontab::UserCrontabEntry;
use cronparse::CrontabFile;

fn main() {
    let crontab = CrontabFile::<UserCrontabEntry>::new("/var/spool/cron/kstep").unwrap();
    for entry in crontab {
        println!("{:?}", entry);
    }
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps

~245KB