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))]
9#![cfg_attr(not(test), warn(unused_crate_dependencies))]
10
11mod storage_root_targets;
12pub use storage_root_targets::StorageRootTargets;
13
14/// Parallel trie calculation stats.
15pub mod stats;
16
17/// Implementation of parallel state root computation.
18pub mod root;
19
20/// Implementation of parallel proof computation.
21pub mod proof;
22
23pub mod proof_task;
24
25/// Async value encoder for V2 proofs.
26pub(crate) mod value_encoder;
27
28/// V2 multiproof targets and chunking.
29pub mod targets_v2;
30
31/// Parallel state root metrics.
32#[cfg(feature = "metrics")]
33pub mod metrics;
34
35/// Proof task manager metrics.
36#[cfg(feature = "metrics")]
37pub mod proof_task_metrics;