gml_log_parser 0.1.1

A small library for parsing the convoluted callstacks GameMaker outputs and translating them into VSC-friendly paths to the file/line in question
Documentation
// #![warn(missing_docs)]
#![warn(clippy::dbg_macro)]
#![warn(clippy::print_stdout)]
#![warn(clippy::map_unwrap_or)]
#![warn(clippy::similar_names)]
#![warn(clippy::todo)]
#![warn(clippy::unimplemented)]
#![warn(clippy::undocumented_unsafe_blocks)]
#![warn(clippy::panic)]

mod lexer;
mod parse;
mod script_mappings;
mod tok;
pub use lexer::*;
pub use parse::*;
pub use script_mappings::*;
pub use tok::*;

#[cfg(test)]
mod tests;