timer-lib 0.3.0

A feature-rich Rust library for creating and managing timers.
Documentation
[package]
name = "timer-lib"
version = "0.3.0"
authors = ["Tim Gatzke <post@tim-gatzke.de>"]
edition = "2021"
description = "A feature-rich Rust library for creating and managing timers."
license = "MIT"
repository = "https://github.com/Tfc538/timer_lib"
homepage = "https://github.com/Tfc538/timer_lib"
documentation = "https://docs.rs/timer-lib"
readme = "README.md"
keywords = ["timer", "async", "recurring", "scheduler", "timeout"]
categories = ["asynchronous"]

[dependencies]
async-trait = "0.1.83"
log = { version = "0.4", optional = true }
tokio = { version = "1", features = ["full", "test-util"] }

[features]
logging = ["log"]

[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }

[[bench]]
name = "timer_bench"
harness = false