]> git.proxmox.com Git - rustc.git/blame - vendor/object-0.31.1/src/read/macho/mod.rs
New upstream version 1.73.0+dfsg1
[rustc.git] / vendor / object-0.31.1 / src / read / macho / mod.rs
CommitLineData
9c376795
FG
1//! Support for reading Mach-O files.
2//!
3//! Defines traits to abstract over the difference between 32-bit and 64-bit
4//! Mach-O files, and implements read functionality in terms of these traits.
5//!
6//! Also provides `MachOFile` and related types which implement the `Object` trait.
7
8mod dyld_cache;
9pub use dyld_cache::*;
10
11mod fat;
12pub use fat::*;
13
14mod file;
15pub use file::*;
16
17mod load_command;
18pub use load_command::*;
19
20mod segment;
21pub use segment::*;
22
23mod section;
24pub use section::*;
25
26mod symbol;
27pub use symbol::*;
28
29mod relocation;
30pub use relocation::*;