Rust · 355 bytes Raw Blame History
1 //! Mach-O 64 reading and writing.
2 //!
3 //! Sprint 1 covers the reader's header and load-command surface; later sprints
4 //! layer section contents, symbols, relocations, dylibs, TBDs, and the writer
5 //! (both MH_EXECUTE and MH_DYLIB paths).
6
7 pub mod constants;
8 pub mod dylib;
9 pub mod exports;
10 pub mod reader;
11 pub mod tbd;
12 pub mod tbd_yaml;
13 pub mod writer;
14