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
#[macro_use]
extern crate failure;

#[cfg_attr(test, macro_use)]
extern crate lazy_static;

#[macro_use]
extern crate serde_derive;

#[cfg(test)]
extern crate siphasher;
#[macro_use]
extern crate xfailure;

mod errors;
mod functions_ids;
mod functions_names;
mod map;
mod patcher;
mod sections;
mod symbols;

#[cfg(test)]
mod tests;

pub use crate::errors::*;
pub use crate::patcher::*;