hashiverse-server-lib 1.0.5

Hashiverse server library — production node implementation (HTTPS + ACME, Kademlia routing, DDoS protection, on-disk persistence) for your open-source decentralized X/Twitter replacement.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # `hashiverse-server-lib` — server-specific extensions to `hashiverse-lib`
//!
//! Everything needed to run a hashiverse node as a public server: HTTPS with
//! automatic Let's Encrypt certificate rotation, kernel-level ipset-based DDoS
//! mitigation, on-disk persistence via `fjall`, the Kademlia routing table, and
//! the inbound RPC dispatch loop that ties all the [`hashiverse_lib::protocol`]
//! handlers together.

#![feature(try_blocks)]

pub mod server;
pub mod tools;
pub mod environment;
pub mod transport;