elf 0.0.3

A pure-rust library for parsing ELF files
docs.rs failed to build elf-0.0.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: elf-0.7.4

Build Status

rust-elf

Pure-Rust library for parsing ELF files

Example:

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),
};