minidump-writer 0.12.0

Rust rewrite of Breakpad's minidump_writer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(unsafe_code)]

#[cfg(target_pointer_width = "32")]
compile_error!("Various MacOS FFI bindings assume we are on a 64-bit architechture");

/// Re-export of the mach2 library for users who want to call mach specific functions
pub use mach2;

pub mod errors;
pub mod mach;
pub mod minidump_writer;
pub mod module_reader;
pub mod process_reader;
mod streams;
pub mod task_dumper;