1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#![warn(
    missing_debug_implementations,
    missing_docs,
    rust_2018_idioms,
    unreachable_pub
)]

//! `cashweb-bitcoin-client` is a library providing [`KeyserverClient`] which allows
//! interaction with specific keyservers and [`KeyserverManager`]
//! which allows sampling and aggregation over multiple keyservers.

mod client;
mod manager;
#[allow(missing_docs)]
pub mod models;

pub use client::*;
pub use manager::*;