bouncing 0.1.0

A flexible async debouncer for Rust with cancellation support, max wait limits, and event hooks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "bouncing"
version = "0.1.0"
edition = "2021"
description = "A flexible async debouncer for Rust with cancellation support, max wait limits, and event hooks"
license = "MIT"
keywords = ["debounce", "async", "tokio", "rate-limit"]
categories = ["asynchronous", "concurrency"]

[dependencies]
tokio = { version = "1", features = ["sync", "time", "rt", "macros"] }
tokio-util = "0.7"
tracing = "0.1"

[dev-dependencies]
tokio = { version = "1", features = ["full"] }