symtool-backend 0.3.0

symtool-backend provides the symbol manipulation framework for the symtool utility
Documentation
1
2
3
4
5
6
7
8
9
10
//! This crate provides utilities for patching symbol tables in ELF and Mach-O binaries.
//!
//! This is the implementation behind the [symtool](https://github.com/calebzulawski/symtool)
//! utility.

pub mod elf;
pub mod error;
pub mod mach;
pub mod object;
pub mod patch;