Closed 0xJepsen closed 2 months ago
Hi, sorry for the delay. We use async_tungstenite
because it supports more features than tokio_tungstenite. It is well maintained and each functionality is gated behind a feature flag, so it wont bloat your application with something you don't need. There is no benefit from moving to tokio_tungstenite
.
to my know the features that
async_tungstenite
was made to support are not supported intokio_tungstenite
. It would then make sense to me to switch totokio_tungstenite
as it seems like the canonical lib. Am I missing something?