revm-database 13.0.1

Revm Database implementations
Documentation
//! Database implementations.
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(not(feature = "std"))]
extern crate alloc as std;

#[cfg(feature = "alloydb")]
mod alloydb;

pub use bytecode;
pub use database_interface;
pub use primitives;
pub use state;

pub use database_interface::*;

/// In-memory database implementations.
pub mod in_memory_db;
/// State management and tracking.
pub mod states;

#[cfg(feature = "alloydb")]
pub use alloydb::{AlloyDB, AlloyDBError, BlockId};

pub use in_memory_db::*;
pub use states::{
    AccountRevert, AccountStatus, BundleAccount, BundleState, CacheState, DBBox,
    OriginalValuesKnown, PlainAccount, RevertToSlot, State, StateBuilder, StateDBBox,
    StorageWithOriginalValues, TransitionAccount, TransitionState,
};