//! A streamlined single-threaded database for revm
//!
//! Implementations of revm database traits
//! supporting both local and forked
//! functionality. This is intended for use
//! as part of a simulated blockchain and so
//! removes any multi-threaded access or
//! secondary cache databases.
//!
//! # Examples
//!
//! ````
//! use verbs_rs;
//! use revm::Evm;
//!
//! let db = verbs_rs::LocalDB::new();
//! let mut evm = Evm::builder().with_db(db).build();
//! ````
//!
pub use ForkDb;
pub use LocalDB;
pub use DB;
pub use RequestCache;