stylus_trace_core/parser/mod.rs
1//! Trace parsing and schema definitions.
2//!
3//! This module handles:
4//! - Parsing raw JSON from stylusTracer
5//! - Extracting HostIO events
6//! - Validating trace format
7//! - Defining output schema
8
9pub mod hostio;
10pub mod schema;
11pub mod source_map;
12pub mod stylus_trace;
13
14// Re-export main types
15pub use hostio::HostIoType;
16pub use stylus_trace::{parse_trace, to_profile, ParsedTrace};