websock-tungstenite 0.2.0

Native transport implementation based on tokio-tungstenite.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Native transport implementation based on tokio-tungstenite.

mod builder;
mod connection;
pub mod crypto;
mod server;
pub mod tls;

pub use builder::{Client, ClientBuilder, DangerousClientBuilder, ServerBuilder};
pub use connection::{Connection, connect, connect_with_tls};
pub use server::{Server, ServerStream, bind};
pub mod stream;