periodically 0.2.0

A library for running tasks on a schedule
Documentation
[dependencies.backoff]
optional = true
version = "0.4.0"

[dependencies.chrono]
optional = true
version = "0.4.38"

[dependencies.cron]
optional = true
version = "0.12.1"

[dependencies.log]
optional = true
version = "0.4.22"

[dependencies.tokio]
features = ["rt", "time"]
optional = true
version = "1.39.3"

[features]
backoff = ["dep:backoff"]
cron = ["dep:cron", "dep:chrono"]
default = ["tokio", "log"]
full = ["tokio", "log", "cron", "backoff"]
log = ["dep:log"]
tokio = ["dep:tokio"]

[lib]
name = "periodically"
path = "src/lib.rs"

[package]
authors = ["David Collard <davidcollardprofessional@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["concurrency"]
description = "A library for running tasks on a schedule"
edition = "2021"
keywords = ["periodic", "cron", "job"]
license-file = "LICENSE"
name = "periodically"
readme = "README.md"
repository = "https://github.com/DavidCollard/periodically"
version = "0.2.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "interval"
path = "tests/interval.rs"

[[test]]
name = "output_piping"
path = "tests/output_piping.rs"

[[test]]
name = "panic_resilency"
path = "tests/panic_resilency.rs"