1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Nakamoto's client library.
#![allow(clippy::inconsistent_struct_constructor)]
#![allow(clippy::type_complexity)]
#![deny(missing_docs, unsafe_code)]
pub mod client;
pub mod error;
pub mod event;
pub mod handle;
pub mod peer;
pub mod spv;

pub use client::*;

#[cfg(test)]
mod tests;