[package]
name = "timerwheel"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "Hierarchical timer wheel for delayed task scheduling with pluggable executors."
license = "Apache-2.0"
repository = "https://github.com/photowey/timerwheel"
homepage = "https://github.com/photowey/timerwheel"
documentation = "https://docs.rs/timerwheel"
readme = "README.md"
keywords = ["timer", "scheduler", "time-wheel", "timing-wheel", "tokio"]
categories = ["asynchronous", "concurrency", "date-and-time"]
include = [
"/CHANGELOG.md",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/examples/**",
"/src/**",
"/tests/**",
]
[features]
default = []
tokio = ["dep:tokio"]
[dependencies]
tokio = { version = "1", optional = true, features = ["rt"] }
[dev-dependencies]
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "macros"] }