nm-binutils 0.1.2

Linux `nm` equivalent rust library to list symbols from object files using goblin.
Documentation
1
2
3
4
5
6
7
//! Linux `nm` equivalent rust library to list symbols from object files using goblin.
//! 
//! Currently support ELF only.
//! 
pub mod object;

pub use crate::object::elf::ELF;