1#![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(not(test), warn(unused_crate_dependencies))]
9#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
10#![cfg_attr(not(feature = "std"), no_std)]
11
12extern crate alloc;
13
14pub mod cached;
17
18pub mod cancelled;
20
21pub mod database;
23
24pub use revm::{database as db, inspector};
25
26#[cfg(any(test, feature = "test-utils"))]
28pub mod test_utils;
29
30pub use revm::{self, database::State, *};
32
33pub mod either;
35
36#[cfg(feature = "witness")]
38pub mod witness;