1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#![feature(async_await)]

/// The `addr` module defines data structures for the identities and network
/// addresses of peers in the network.
pub mod addr;

/// The `peer` module defines the TCP handlers that implement peer discovery.
pub mod peer;

/// The `tcp` module defines some helper functions for handling TCP streams
/// using asynchronous IO.
pub mod tcp;