symtool_backend/
lib.rs

1//! This crate provides utilities for patching symbol tables in ELF and Mach-O binaries.
2//!
3//! This is the implementation behind the [symtool](https://github.com/calebzulawski/symtool)
4//! utility.
5
6pub mod elf;
7pub mod error;
8pub mod mach;
9pub mod object;
10pub mod patch;