nexus-net 0.1.0

Low-latency WebSocket, HTTP/1.1, and TLS primitives. Sans-IO, zero-copy, SIMD-accelerated.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! nexus-net — low-latency network protocol primitives.
//!
//! Sans-IO protocol implementations that operate on byte slices.
//! No async runtime, no I/O layer — pure protocol state machines.
//!
//! # Modules
//!
//! - [`buf`] — Buffer primitives (ReadBuf, WriteBuf)
//! - [`ws`] — WebSocket framing (RFC 6455)
//! - [`tls`] — TLS codec via rustls (feature: `tls`)

pub mod buf;
pub mod http;
#[cfg(feature = "tls")]
pub mod tls;
pub mod ws;