reth_trie_parallel/lib.rs
1//! Implementation of exotic state root computation approaches.
2
3#![doc(
4 html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
5 html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
6 issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
7)]
8#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
9
10mod storage_root_targets;
11pub use storage_root_targets::StorageRootTargets;
12
13/// Parallel trie calculation stats.
14pub mod stats;
15
16/// Implementation of parallel state root computation.
17pub mod root;
18
19/// Implementation of parallel proof computation.
20pub mod proof;
21
22/// Parallel state root metrics.
23#[cfg(feature = "metrics")]
24pub mod metrics;