Skip to main content

reth_trie_parallel/
lib.rs

1//! Parallel proof computation and state-root task interface types.
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
11/// Error types for the state-root task and proof computation.
12pub mod error;
13
14/// Implementation of parallel proof computation.
15pub mod proof_task;
16
17/// State root task interface types shared between the engine tree and the payload builder.
18pub mod state_root_task;
19
20/// Async value encoder for V2 proofs.
21pub(crate) mod value_encoder;
22
23/// Proof task manager metrics.
24#[cfg(feature = "metrics")]
25pub mod proof_task_metrics;