cron-parser 0.3.1

Library for parsing cron syntax
Documentation
language: rust
rust:
  - stable
  - beta

os:
  - linux
  - osx

before_script:
  - rustup component add clippy
script:
  - cargo clippy
  # if you want the build job to fail when encountering warnings, use
  - cargo clippy -- -D warnings
  # in order to also check tests and non-default crate features, use
  #- cargo clippy --all-targets --all-features -- -D warnings
  - cargo test