- Added
ThrottlePool::queue_with_hold()
- This method returns a value that will keep the slot "in use", until dropped.
- An example use of this would be in networking. Whereas using
queue()
can be used to prevent the start of subsequent requests,queue_with_hold()
can be used to also ensure no new requests are started until all in-flight requests are completed.
- Update
tokio
v1.32. - Update
pin-utils
to v0.1.
- Update to
tokio
v1.0.
- Optional support for
futures-timer
crate via feature flag.
- Update to
std
Future
andtokio
v0.2.