async-rate-limit 0.1.1

Common traits for rate limiting and implementations in async contexts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Changelog

### v0.1.1

- Add two threadsafe traits, `ThreadsafeRateLimiter` and `ThreadsafeVariableRateLimiter` as threadsafe counterparts to
  the existing traits
- Implement the threadsafe variants where possible

### v0.1.0

- impl `Clone` for `TokenBucketRateLimiter`
    - allows cloned structs containing the rate limiter to share the same underlying limiter state