cashweb-keyserver-client 0.1.0-alpha.4

A library providing a client for use within the cash:web Keyserver Protocol.
Documentation
#![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::*;