electrs 0.11.1

An efficient re-implementation of Electrum Server in Rust
Documentation
#[macro_use]
extern crate anyhow;

#[macro_use]
extern crate log;

#[macro_use]
extern crate serde_derive;

mod cache;
mod chain;
mod config;
mod daemon;
mod db;
mod electrum;
mod index;
mod mempool;
mod merkle;
mod metrics;
mod p2p;
mod server;
mod signals;
mod status;
mod thread;
mod tracker;
mod types;

pub use server::run;