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
10pub mod blocks;
11pub mod sym;