1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! The EVM Toolkit Assembler.
//!
//! You can find more information about the command-line tools in
//! [The ETK Book](https://quilt.github.io/etk/).
//!
//! The [`ingest`] module is high-level and similar to the command-line interface.
//!
//! The [`mod@asm`] module provides low-level access to the internals of the assembler.
#![deny(unsafe_code)]
#![deny(missing_docs)]
#![deny(unreachable_pub)]
#![deny(missing_debug_implementations)]

pub mod asm;
mod ast;
pub mod disasm;
pub mod ingest;
pub mod ops;
mod parse;

pub use self::parse::error::ParseError;