kdmp-parser 0.8.2

A KISS, dependency free, Rust crate to parse Windows kernel crash-dumps created by Windows & its debugger.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Axel '0vercl0k' Souchet - February 25 2024
#![allow(clippy::doc_markdown)]
#![doc = include_str!("../README.md")]
#![allow(clippy::missing_panics_doc, clippy::missing_errors_doc)]
pub mod bits;
pub mod error;
pub mod gxa;
pub mod map;
pub mod parse;
pub mod phys;
pub mod pxe;
pub mod structs;
pub mod virt;
mod virt_utils;