//! TLS transport layer for the Hotaru framework.
//!
//! Provides TLS stream implementations that plug into `hotaru_core`'s
//! `ConnStream` / `TransportSpec` abstractions, plus flexible types for
//! runtime TCP/TLS selection.
//!
//! # Module layout
//!
//! - `tls/` — `TlsStream`, `TlsAccepter`, `TlsConnector`, `TlsTransport` (TLS-only)
//! - `config/` — `TlsConfig` (server) and `TlsClientConfig` (client) builders
//! - `flexible/` — `TcpOrTlsStream`, `ConnectionBuilder` (runtime TCP-or-TLS choice)
// ── TLS stream layer ──────────────────────────────────────────────────────────
pub use ;
// ── Configuration builders ────────────────────────────────────────────────────
pub use ;
// ── Flexible TCP/TLS (runtime transport selection) ───────────────────────────
pub use ;