[package]
edition = "2021"
rust-version = "1.71"
name = "tpt-cron-parse"
version = "0.1.0"
authors = ["TPT Solutions"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cron expression parser with precise error reporting and human-readable output"
readme = "README.md"
keywords = [
"cron",
"parser",
"scheduler",
"human-readable",
]
categories = [
"parsing",
"date-and-time",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tpt-solutions/tpt-data-parsers"
[features]
chrono = ["dep:chrono"]
[lib]
name = "tpt_cron_parse"
path = "src/lib.rs"
[[example]]
name = "crontab"
path = "examples/crontab.rs"
[[example]]
name = "next_run"
path = "examples/next_run.rs"
required-features = ["chrono"]
[[test]]
name = "cron"
path = "tests/cron.rs"
[dependencies.chrono]
version = "0.4"
optional = true