timer-lib 0.3.0

A feature-rich Rust library for creating and managing timers.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"]