1
2
3
4
5
6
7
8
9
10
11
12
13
//! Bitswap protocol implementation
#![deny(missing_docs)]
#![deny(warnings)]

mod behaviour;
#[cfg(feature = "compat")]
mod compat;
mod protocol;
mod query;
mod stats;

pub use crate::behaviour::{Bitswap, BitswapConfig, BitswapEvent, BitswapStore, Channel};
pub use crate::query::QueryId;