[package]
edition = "2024"
name = "okee-wheel-timer"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic hashed wheel timer with keyed deduplication."
homepage = "https://github.com/markbrosalin/okee-wheel-timer"
documentation = "https://docs.rs/okee-wheel-timer"
readme = "README.md"
keywords = [
"timer",
"scheduler",
"time-wheel",
"hashed-wheel",
"dedup",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT"
repository = "https://github.com/markbrosalin/okee-wheel-timer"
[lib]
name = "okee_wheel_timer"
path = "src/lib.rs"
[[bin]]
name = "okee-wheel-timer"
path = "src/main.rs"
[[test]]
name = "time_wheel_api"
path = "tests/time_wheel_api.rs"
[[bench]]
name = "wheel"
path = "benches/wheel.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]