- Fix blocking receiver sleeping after every read #48 by @jprochazk
0.7.0 - 2024-10-10
- Fix crash when error_event does not have "message" or "error" fields #37 (thanks @romamik!)
- Add
Options::additional_headers
andsubprotocols
#27 (thanks @Its-Just-Nans!) - Update to
tungstenite
0.23 #39 (thanks @Its-Just-Nans!) - Add support for tungstenite 0.24 #46
0.6.0 - 2024-05-21
0.5.0 - 2024-02-26
- Add
Options
for controlling max frame size of incoming messages - (#29)
0.4.1 - 2024-02-15
- Fix: all errors are reported to the caller via
on_event
(#26) - Add support for tungstenite 0.21, update MSRV to 1.72 (#28)
0.4.0 - 2023-10-07
- Make
tokio
an opt-in dependency, and add a simplerws_receive
function (#24)
0.3.0 - 2023-09-29
- Fix:
WsEvent::Closed
is correctly sent on web when socket is closed (#6) - Fix: On web, close connection when dropping
WsSender
(#8)
- Support WSS (WebSocket Secure) / TLS.
- Improve error reporting.
EventHandler
no longer needs to beSync
.
Initial commit: a simple WebSocket client library that works on both native and on the web.