revm_specification/lib.rs
//! Optimism-specific constants, types, and helpers.
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(not(feature = "std"))]
extern crate alloc as std;
pub mod constants;
pub mod eip170;
pub mod eip2;
pub mod eip2930;
pub mod eip4844;
pub mod eip7702;
pub mod hardfork;