[go: up one dir, main page]

symbolic-common 2.0.4

Common types and utilities for symbolic, a library to symbolicate and process stack traces from native applications, minidumps, minified JavaScripts or ProGuard optimized Android apps.
Documentation
//! Common functionality for symbolic.
//!
//! In particular this defines common error types and similar things
//! that all symbolic crates want to use.
#![recursion_limit = "128"]

#[macro_use]
extern crate error_chain;
#[cfg(feature = "with_dwarf")]
extern crate gimli;
#[cfg(feature = "with_objects")]
extern crate goblin;
#[cfg(feature = "with_objects")]
extern crate scroll;
#[cfg(feature = "with_sourcemaps")]
extern crate sourcemap;
extern crate memmap;
extern crate owning_ref;

mod macros;
mod errors;
mod types;
mod byteview;

pub use errors::*;
pub use types::*;
pub use byteview::*;