websock-wasm 0.5.0

WebAssembly transport implementation for browser-based WebSockets.
Documentation
1
2
3
4
5
6
7
8
//! WebAssembly transport implementation for browser-based WebSockets.

mod builder;
mod connection;

pub use builder::{Client, ClientBuilder, DangerousClientBuilder};
pub use connection::{Connection, connect};
pub mod stream;