nexus-async-net 0.9.1

Async WebSocket adapter for nexus-net. Tokio-compatible, zero-copy, SIMD-accelerated.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Async WebSocket — nexus-async-rt backend.
//!
//! Provides [`WsStreamBuilder`] for connection setup. The primary API
//! types ([`WsReader`](super::WsReader) / [`WsWriter`](super::WsWriter))
//! are re-exported from the parent `ws` module.

mod stream;

pub use crate::maybe_tls::MaybeTls;
pub use stream::WsStreamBuilder;