evm_nogas/
lib.rs

1//! Ethereum Virtual Machine implementation in Rust
2
3#![no_std]
4
5extern crate alloc;
6
7pub use evm_core::*;
8pub use evm_runtime::*;
9
10pub mod backend;
11pub mod executor;