cronparse

Crates.iocronparse
lib.rscronparse
version0.5.1
sourcesrc
created_at2015-07-04 21:30:40.373985
updated_at2016-07-11 08:34:19.629136
descriptionCrontab files parser
homepage
repositoryhttps://github.com/kstep/cronparse.rs.git
max_upload_size
id2532
size50,702
Konstantin Stepanov (kstep)

documentation

http://kstep.me/cronparse.rs/cronparse/index.html

README

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.

Commit count: 19

cargo fmt