Prints various binary symbols in your crate
First install:
cargo install cargo-sym
Then:
cargo sym
will print every debugging symbol it finds in the first valid binary target in target/debug
cargo sym -d
will print every debugging symbol demangledcargo sym -e
will print every exported symbol importable by other binariescargo sym -e -d
will do -d
and -e
together :]When goblin gets a mach and PE backend (which should be soonish), will update here
PRs welcome of course :)