dylex 1.0.0

A high-performance dyld shared cache extractor for macOS and iOS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Mach-O file format handling.
//!
//! This module provides types and utilities for parsing and modifying Mach-O files,
//! which are the executable format used on macOS and iOS.

mod constants;
mod context;
mod structs;

pub use constants::*;
pub use context::*;
pub use structs::*;