nexus-async-net 0.4.2

Async WebSocket adapter for nexus-net. Tokio-compatible, zero-copy, SIMD-accelerated.
1
2
3
4
5
6
7
//! Async WebSocket — adapts nexus-net for async runtimes.

#[cfg(feature = "tokio-rt")]
mod tokio;

#[cfg(feature = "tokio-rt")]
pub use self::tokio::*;