swactor/crates/distribution/src/lib.rs
Zachery Aaron Shores-Chmielewski 2f767a6ed8 feat: add support for iroh as the transport layer (#40)
Iroh gives us a lot as a transport layer. Lets make use of it.
Co-authored-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
Co-committed-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-15 09:47:05 +00:00

16 lines
290 B
Rust

pub mod types;
pub mod crypto;
pub mod messages;
pub mod codec;
#[cfg(feature = "tcp")]
pub mod transport;
pub mod swim;
pub mod kademlia;
pub mod cache;
pub mod node;
pub mod registry;
pub mod snapshot;
#[cfg(feature = "tcp")]
pub mod driver;
#[cfg(feature = "iroh")]
pub mod iroh_driver;