1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! 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;
extern crate memmap;
extern crate owning_ref;
#[cfg(feature = "with_objects")]
extern crate scroll;
#[cfg(feature = "with_serde")]
extern crate serde;
#[macro_use]
#[cfg(feature = "with_serde")]
extern crate serde_plain;
#[cfg(feature = "with_sourcemaps")]
extern crate sourcemap;

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

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