[package]
edition = "2021"
name = "timer-lib"
version = "0.3.0"
authors = ["Tim Gatzke <post@tim-gatzke.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A feature-rich Rust library for creating and managing timers."
homepage = "https://github.com/Tfc538/timer_lib"
documentation = "https://docs.rs/timer-lib"
readme = "README.md"
keywords = [
"timer",
"async",
"recurring",
"scheduler",
"timeout",
]
categories = ["asynchronous"]
license = "MIT"
repository = "https://github.com/Tfc538/timer_lib"
[features]
logging = ["log"]
[lib]
name = "timer_lib"
path = "src/lib.rs"
[[example]]
name = "feature_showcase"
path = "examples/feature_showcase.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "weird"
path = "tests/weird.rs"
[[bench]]
name = "timer_bench"
path = "benches/timer_bench.rs"
harness = false
[dependencies.async-trait]
version = "0.1.83"
[dependencies.log]
version = "0.4"
optional = true
[dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]