hopr_path/lib.rs
1//! This Rust crate contains all the path construction and path selection algorithms in the HOPR mixnet.
2
3/// Defines the graph of HOPR payment channels.
4pub mod channel_graph;
5pub mod errors;
6/// Defines the two most important types: [TransportPath](crate::path::TransportPath) and [ChannelPath](crate::path::ChannelPath).
7pub mod path;
8/// Implements different path selectors in the [ChannelGraph](crate::channel_graph::ChannelGraph).
9pub mod selectors;