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