Distributed Erlang over iroh P2P + TLS, with a bot powers SDK
1//! Transport carriers for the Erlang distribution handshake.
2//!
3//! - [`iroh`] — P2P QUIC dialed by public key (TLS built-in)
4//! - [`tcp`] — classic TCP (optionally after EPMD lookup)
5//! - [`tls`] — TCP wrapped in rustls for the security pedants
6
7pub mod iroh;
8pub mod tcp;
9pub mod tls;
10
11pub use iroh::IrohTransport;
12pub use tcp::TcpTransport;
13pub use tls::{TlsConfig, TlsTransport};