This repository was archived by the owner on Feb 22, 2026. It is now read-only.
·
3 commits
to main
since this release
Breaking Changes
- The tungstenite feature flag has been removed in favour of version specific
feature flags. Users should use the feature flag that pairs with the version
that they need:tungstenite-0.23tungstenite-0.24tungstenite-0.25tungstenite-0.26tungstenite-0.27tungstenite-0.28
Subscription::stopis now synchronous and no longer has a return type.
New Features
- Added a stop function to the
Clientthat takes aSubscriptionId - Added an
idfunction toSubscriptionthat returns aSubscriptionId - Dropping a
Subscriptionwill now stop the subscription on the server.
Previously this would have continued on until the server realised the
subscription was dead.
Bug Fixes
- Raised the pin-project dependency slightly
Subscription::stopis now drop safe - previously it's future could be
dropped before the send message was sent and the subscription would
carry on until the server realised it was dead.
Changes
- Bumped the MSRV to 1.85