95ddaae4dd6a41358f2bd11799fbd9b5c2386e07
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),
};
Description
Languages
Rust
99.9%