elfkit 0.0.7

an elf parser and manipulation library in pure rust
Documentation
#[macro_use] extern crate bitflags;
extern crate byteorder;
#[macro_use] extern crate enum_primitive_derive;
extern crate num_traits;
extern crate indexmap;
#[macro_use] extern crate log;

#[macro_use] pub mod utils;
pub mod dynamic;
pub mod elf;
pub mod error;
pub mod filetype;
pub mod header;
pub mod loader;
pub mod symbolic_linker;
pub mod relocation;
pub mod section;
pub mod segment;
pub mod strtab;
pub mod symbol;
pub mod types;

pub use dynamic::{Dynamic, DynamicContent};
pub use elf::Elf;
pub use error::Error;
pub use header::Header;
pub use symbolic_linker::{SymbolicLinker};
pub use relocation::Relocation;
pub use section::{Section, SectionContent, SectionHeader};
pub use segment::SegmentHeader;
pub use strtab::Strtab;
pub use symbol::{Symbol, SymbolSectionIndex};