fuel_etk_dasm/lib.rs
1//! The EVM Toolkit Disassembler.
2//!
3//! You can find more information about the command-line tools in
4//! [The ETK Book](https://quilt.github.io/etk/).
5#![deny(unsafe_code)]
6//#![deny(missing_docs)]
7#![deny(unreachable_pub)]
8#![deny(missing_debug_implementations)]
9
10#[path = "bin/disease/selectors.rs"]
11mod selectors;
12pub use crate::selectors::DisplayOp;
13
14pub mod blocks;
15pub mod sym;