Skip to main content

miden_mast_package/debug_info/
mod.rs

1//! Debug information sections for MASP packages.
2//!
3//! This module provides types for encoding source-level debug information in the
4//! `debug_types`, `debug_sources`, and `debug_functions` custom sections of a MASP package.
5//! This information is used by debuggers to map between the Miden VM execution state
6//! and the original source code.
7
8mod serialization;
9mod types;
10
11pub use types::*;