Build Status

rust-elf

Pure-Rust library for parsing ELF files

Example:

```rust extern crate elf;

use std::path::Path;

let path = Path::new("/some/file/path"); let file = match elf::File::open(&path) { Ok(f) => f, Err(e) => panic!("Error: {:?}", e), }; ```