reth_stages_api/
lib.rs

1//! Staged syncing primitives for reth.
2//!
3//! ## Feature Flags
4//!
5//! - `test-utils`: Utilities for testing
6
7#![doc(
8    html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
9    html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
10    issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
11)]
12#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
13#![cfg_attr(not(test), warn(unused_crate_dependencies))]
14
15mod error;
16mod metrics;
17mod pipeline;
18mod stage;
19#[cfg(any(test, feature = "test-utils"))]
20pub mod test_utils;
21mod util;
22
23pub use crate::metrics::*;
24pub use error::*;
25pub use pipeline::*;
26pub use stage::*;
27
28use aquamarine as _;
29
30// re-export the stages types for convenience
31pub use reth_stages_types::*;