minidump-writer 0.10.1

Rust rewrite of Breakpad's minidump_writer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![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;
mod streams;
pub mod task_dumper;