56 releases (34 breaking)

0.35.0 Apr 10, 2024
0.34.0 Mar 11, 2024
0.33.0 Mar 5, 2024
0.32.2 Dec 24, 2023
0.1.0 Aug 20, 2016

#20 in Parser implementations

Download history 647011/week @ 2023-12-23 1009723/week @ 2023-12-30 1301411/week @ 2024-01-06 1334407/week @ 2024-01-13 1333347/week @ 2024-01-20 1350195/week @ 2024-01-27 1373780/week @ 2024-02-03 1379197/week @ 2024-02-10 1401079/week @ 2024-02-17 1443287/week @ 2024-02-24 1475639/week @ 2024-03-02 1429169/week @ 2024-03-09 1491572/week @ 2024-03-16 1500104/week @ 2024-03-23 1481962/week @ 2024-03-30 1221899/week @ 2024-04-06

5,932,024 downloads per month
Used in 28,971 crates (144 directly)

Apache-2.0 OR MIT

1.5MB
33K SLoC

object

The object crate provides a unified interface to working with object files across platforms. It supports reading relocatable object files and executable files, and writing COFF/ELF/Mach-O/XCOFF relocatable object files and ELF/PE executable files.

For reading files, it provides multiple levels of support:

  • raw struct definitions suitable for zero copy access
  • low level APIs for accessing the raw structs (example)
  • a higher level unified API for accessing common features of object files, such as sections and symbols (example)

Supported file formats for reading: ELF, Mach-O, Windows PE/COFF, Wasm, XCOFF, and Unix archive.

For writing files, it provides:

  • low level writers for ELF, PE, and COFF
  • higher level builder for ELF (example)
  • a unified API for writing relocatable object files (ELF, Mach-O, COFF, XCOFF) (example)

Example for unified read API

use object::{Object, ObjectSection};
use std::error::Error;
use std::fs;

/// Reads a file and displays the name of each section.
fn main() -> Result<(), Box<dyn Error>> {
    let binary_data = fs::read("path/to/binary")?;
    let file = object::File::parse(&*binary_data)?;
    for section in file.sections() {
        println!("{}", section.name()?);
    }
    Ok(())
}

See crates/examples for more examples.

Minimum Supported Rust Version (MSRV)

Changes to MSRV are considered breaking changes. We are conservative about changing the MSRV, but sometimes are required to due to dependencies. The MSRV is 1.65.0.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.2–1.4MB
~26K SLoC