fuel-etk-dasm 0.3.0-dev

EVM Toolkit disassembler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use etk_cli::io::InputSource;

use std::path::PathBuf;

use clap::StructOpt;

#[derive(Debug, StructOpt)]
pub struct Opts {
    #[structopt(flatten)]
    pub src: InputSource,

    #[structopt(
        short = 'o',
        long = "out-file",
        help = "path to output file (defaults to stdout)"
    )]
    pub out_file: Option<PathBuf>,
}