Skip to main content

hashiverse_lib/tools/
mod.rs

1//! # Shared primitives
2//!
3//! The foundation layer the rest of the crate builds on: core identity and hash
4//! newtypes, wire-format time and duration, the Blake3/Ed25519/ChaCha20 crypto
5//! stack, the multi-algorithm proof-of-work chain and its parallel search engine,
6//! hierarchical time buckets, compression, serde helpers, and the
7//! [`runtime_services::RuntimeServices`] bundle that lets the same protocol code
8//! run on native, WASM, and deterministic test environments.
9
10pub mod types;
11pub mod config;
12pub mod keys;
13pub mod keys_post_quantum;
14pub mod time;
15pub mod tools;
16pub mod server_id;
17pub mod client_id;
18pub mod encryption;
19pub mod compression;
20pub mod signing;
21pub mod hashing;
22pub mod pow;
23pub mod pow_required_estimator;
24pub mod parallel_pow_generator;
25pub mod runtime_services;
26pub mod anyhow_asserts;
27pub mod buckets;
28pub mod json;
29pub mod time_provider;
30pub mod bytes_gatherer;
31pub use bytes_gatherer::BytesGatherer;
32pub mod url_preview;
33pub mod hyper_log_log;
34pub mod plain_text_post;
35
36