1
2
3
4
5
6
7
8
9
10
11
// Copyright 2020 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0

#![deny(warnings)]
#![deny(missing_docs)]

//! Network crate provides utilities that facilites libp2p setup for mina network
//! and peer-to-peer communication

pub mod p2p;
pub mod processor;