tasklet 0.3.1

An asynchronous task scheduling library
Documentation
[package]
name = "tasklet"
version = "0.3.1"
authors = ["Stavros Grigoriou <unix121@protonmail.com>"]
edition = "2021"
rust-version = "1.90.0"
license = "MIT"
repository = "https://github.com/stav121/tasklet"
readme = "README.md"
description = "An asynchronous task scheduling library"
keywords = ["cron", "scheduling", "tasks", "tasklet", "async"]

[dependencies]
cron = "0.15.0"
chrono = "0.4.42"
log = "0.4.29"
# Only the runtime pieces the library actually uses: spawning tasks, channels /
# Notify, timers and the `select!`/`pin!` macros. Downstream crates can enable
# more features themselves.
tokio = { version = "1.48.0", features = ["rt", "sync", "time", "macros"] }
futures = "0.3.31"
thiserror = "2.0.17"

[dev-dependencies]
simple_logger = "5.1.0"
tokio-test = "0.4.4"
# Examples and tests need the macros and a multi-thread runtime on top of the
# library's minimal feature set.
tokio = { version = "1.48.0", features = ["rt-multi-thread", "macros"] }