hotshot_libp2p_networking/lib.rs
1// Copyright (c) 2021-2024 Espresso Systems (espressosys.com)
2// This file is part of the HotShot repository.
3
4// You should have received a copy of the MIT License
5// along with the HotShot repository. If not, see <https://mit-license.org/>.
6
7//! Library for p2p communication
8
9/// Network logic
10pub mod network;
11
12/// symbols needed to implement a networking instance over libp2p-netorking
13pub mod reexport {
14 pub use libp2p::{request_response::ResponseChannel, Multiaddr};
15 pub use libp2p_identity::PeerId;
16}