goblin 0.0.6

An impish, cross-platform binary parsing and loading crate
Documentation
1
2
3
4
5
6
7
8
9
extern crate goblin;

use goblin::elf;
use std::path::Path;

pub fn main () {
    let ls = elf::Elf::from(&Path::new("/bin/ls"));
    println!("{:#?}", ls);
}