revme 0.2.0

Rust Ethereum Virtual Machine Executable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod cmd;
mod exec;
mod runner;
mod statetest;
use cmd::Error;
use structopt::StructOpt;
mod cli_env;

pub fn main() -> Result<(), Error> {
    let cmd = cmd::MainCmd::from_args();
    cmd.run()
}