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;
25pub use revm_inspector as inspector;
26
27#[cfg(any(test, feature = "test-utils"))]
29pub mod test_utils;
30
31pub use revm::{self, database::State, *};
33
34pub mod either;
36
37#[cfg(feature = "witness")]
39pub mod witness;