[[bench]]
harness = false
name = "channel_benchmark"
path = "benches/channel_benchmark.rs"
[[bench]]
harness = false
name = "notify_benchmark"
path = "benches/notify_benchmark.rs"
[[bench]]
harness = false
name = "ringbuf_benchmark"
path = "benches/ringbuf_benchmark.rs"
[[bench]]
harness = false
name = "service_benchmark"
path = "benches/service_benchmark.rs"
[[bench]]
harness = false
name = "wheel_benchmark"
path = "benches/wheel_benchmark.rs"
[dependencies.futures]
version = "0.3"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.rustc-hash]
version = "2.1.1"
[dependencies.tokio]
default-features = false
features = ["test-util", "macros", "rt-multi-thread", "parking_lot"]
version = "1.48.0"
[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.7.0"
[dev-dependencies.rtrb]
version = "0.3.2"
[lib]
name = "kestrel_timer"
path = "src/lib.rs"
[package]
authors = ["ShaoG-R"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "concurrency", "data-structures"]
description = "High-performance async timer library based on Hierarchical Timing Wheel algorithm"
documentation = "https://docs.rs/kestrel-timer"
edition = "2024"
exclude = ["target/*", ".git/*", ".github/*"]
homepage = "https://github.com/ShaoG-R/kestrel-timer"
keywords = ["timer", "timing-wheel", "async", "tokio", "scheduler"]
license = "MIT OR Apache-2.0"
name = "kestrel-timer"
readme = "README.md"
repository = "https://github.com/ShaoG-R/kestrel-timer"
version = "0.2.2"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"