···11+//! Transport carriers for the Erlang distribution handshake.
22+//!
33+//! - [`iroh`] — P2P QUIC dialed by public key (TLS built-in)
44+//! - [`tcp`] — classic TCP (optionally after EPMD lookup)
55+//! - [`tls`] — TCP wrapped in rustls for the security pedants
66+77+pub mod iroh;
88+pub mod tcp;
99+pub mod tls;
1010+1111+pub use iroh::IrohTransport;
1212+pub use tcp::TcpTransport;
1313+pub use tls::{TlsConfig, TlsTransport};