cron-when 0.4.2

A CLI tool to parse cron expressions and display next execution times with human-readable durations
Documentation
# Configuration for cargo-deny
# https://embarkstudios.github.io/cargo-deny/

[advisories]
# Check for security vulnerabilities
ignore = []

[licenses]
# Allow common open source licenses
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "MPL-2.0",
    "Unicode-3.0",
    "CDLA-Permissive-2.0",  # Used by webpki-roots (Mozilla's root certificates)
]
confidence-threshold = 0.8

[bans]
# Deny multiple versions of the same crate
multiple-versions = "warn"
wildcards = "allow"

[sources]
# Only allow crates from crates.io
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]