object 0.40.0

A unified interface for reading and writing object file formats.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Support for writing Mach-O files.
//!
//! Provides [`Encoder`] for low level writing of Mach-O files.
//! This is also used to provide Mach-O support for [`write::Object`](crate::write::Object).

mod encoder;
pub use encoder::*;

mod object;
pub use object::*;