-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WASM friendly dependencies #175
Comments
Ok cool, I think it's worth investigating for the client as you suggested, |
For non WASM seems like ws_stream_tungstenite is the native equivalent |
After #171 we assume that a separate sender and receiver of the WebSocket stream exist which tungstenite-rs doesn't provide and it doesn't has support for async/await AFAIU). Thus, it's a not an ideal library for us but the |
The one I linked is from the same person behind |
#204 is merged which replaced hyper with You have to disable the |
Sorry, we had to revert #204 because I left the branch open if you want to use still. |
I think http-rs/surf#271 would be the PR to track for that |
I think that PR is merged and should be released by now? |
Right, yeah thanks for letting us know but we still need Closing this issue in favor of #227 |
Not only to make maintenance easier but also to potentially enable WASM compilation what about using higher level HTTP and WebSocket abstractions like
surf
(I guess better for async-std environments?) orreqwest
and for WS perhaps something likews_stream_wasm
at least for the client stuff?The text was updated successfully, but these errors were encountered: