1c3t3a / rust-socketio

An implementation of a socket.io client written in the Rust programming language.
MIT License
408 stars 74 forks source link

Add support for WebTransport #386

Open tausifcreates opened 9 months ago

tausifcreates commented 9 months ago

Since Nodejs socket io server now supports web transport, is it planned to add its support in rust-socketio? This crate can be used since it provides a WebTransport client: https://github.com/BiagioFesta/wtransport

1c3t3a commented 9 months ago

This sounds interesting, thanks for brining it up! Should be "fairly" easy to add by extending our TransportType. This is done by creating a type representing a WebTransport communication and implementing the Transport trait.

tausifcreates commented 9 months ago

@1c3t3a Thanks for considering 🙂