mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
36 lines
1.1 KiB
Rust
36 lines
1.1 KiB
Rust
#![cfg_attr(docsrs, feature(doc_cfg))]
|
|
#![doc(
|
|
html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
|
|
html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
|
|
issue_tracker_base_url = "https://github.com/paradigmxzy/reth/issues/"
|
|
)]
|
|
#![warn(missing_docs, unreachable_pub, unused_crate_dependencies)]
|
|
#![deny(unused_must_use, rust_2018_idioms)]
|
|
#![doc(test(
|
|
no_crate_inject,
|
|
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
|
))]
|
|
|
|
//! revm utils and implementations specific to reth.
|
|
|
|
/// Contains glue code for integrating reth database into revm's [Database](revm::Database).
|
|
pub mod database;
|
|
|
|
/// revm implementation of reth block and transaction executors.
|
|
pub mod executor;
|
|
mod factory;
|
|
|
|
/// revm executor factory.
|
|
pub use factory::Factory;
|
|
|
|
/// reexport for convenience
|
|
pub use reth_revm_inspectors::*;
|
|
/// reexport for convenience
|
|
pub use reth_revm_primitives::*;
|
|
|
|
/// Re-export everything
|
|
pub use revm;
|
|
|
|
/// Etereum DAO hardfork state change data.
|
|
pub mod eth_dao_fork;
|