//! Transport carriers for the Erlang distribution handshake. //! //! - [`iroh`] — P2P QUIC dialed by public key (TLS built-in) //! - [`tcp`] — classic TCP (optionally after EPMD lookup) //! - [`tls`] — TCP wrapped in rustls for the security pedants pub mod iroh; pub mod tcp; pub mod tls; pub use iroh::IrohTransport; pub use tcp::TcpTransport; pub use tls::{TlsConfig, TlsTransport};