nexus-async-net 0.5.1

Async WebSocket adapter for nexus-net. Tokio-compatible, zero-copy, SIMD-accelerated.
Documentation
1
2
3
4
5
6
7
8
9
//! Async WebSocket — tokio adapter for nexus-net.
//!
//! Same FrameReader, same zero-copy Message, same performance.
//! The only difference is `.await` on socket I/O.

mod stream;

pub use crate::maybe_tls::MaybeTls;
pub use stream::{WsStream, WsStreamBuilder};