//! Fallback raw WASI transport.
//!
//! This module is a stub for a direct `wasi:sockets/tcp` implementation without
//! the `wstd` wrapper. It is not compiled by default — `WasiTcpTransport` in
//! `tcp.rs` is the preferred implementation.
//!
//! If `wstd` proves insufficient (API bugs, missing features, version
//! incompatibility), this module can be fleshed out as a drop-in replacement.
use TransportError;
/// Raw WASI transport (stub — not implemented).
;