1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
extern crate goblin;
extern crate scroll;
extern crate ordermap;
extern crate string_interner;
#[macro_use]
extern crate log;
#[macro_use]
extern crate failure;

use goblin::container;

type Ctx = container::Ctx;

mod target;
pub use target::Target;

pub mod elf;
pub use elf::Elf;

pub mod mach;
pub use mach::Mach;

pub mod artifact;
pub use artifact::{Object, Artifact, ArtifactBuilder, Link, ImportKind, Decl, RelocOverride};