1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Ethereum Virtual Machine implementation in Rust

#![deny(warnings)]
#![forbid(unsafe_code, missing_docs, unused_variables, unused_imports)]

#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

pub use evm_core::*;
pub use evm_runtime::*;
pub use evm_gasometer as gasometer;

pub mod executor;
pub mod backend;