minidump-writer 0.13.0

Rust rewrite of Breakpad's minidump_writer
Documentation
// `WriterError` is large and clippy doesn't like that, but not a huge deal atm
#![allow(clippy::result_large_err)]

pub use {
    maps_reader::LINUX_GATE_LIBRARY_NAME,
    process_inspection::{Error as BackendError, process_reader},
};

pub mod app_memory;
mod crash_context_ext;
pub mod maps_reader;
pub mod minidump_writer;
pub mod module_reader;
pub mod thread_info;

pub(crate) mod auxv;

mod dso_debug;
mod dumper_cpu_info;
mod process_inspection;
mod serializers;

#[cfg(target_os = "android")]
mod android;

pub type Pid = i32;
pub use crash_context_ext::CrashContextExt;