miden-debug 0.6.1

An interactive debugger for Miden VM programs
Documentation
pub use miden_debug_engine::{debug, exec, felt};

mod config;
mod input;
mod linker;

#[cfg(feature = "tui")]
mod logger;
#[cfg(feature = "tui")]
mod ui;

#[cfg(feature = "tui")]
pub use self::ui::{DebugMode, State, run, run_with_state};
pub use self::{
    config::{ColorChoice, DebuggerConfig},
    debug::*,
    exec::*,
    felt::{Felt, FromMidenRepr, ToMidenRepr, bytes_to_words, push_wasm_ty_to_operand_stack},
    input::InputFile,
    linker::{LibraryKind, LinkLibrary},
};