Registry / other / object

object

JSON →
library0.39.1rscratesunverified

A unified interface for reading and writing object file formats.

# Cargo.toml [dependencies] object = "0.39.1"
INSTALL
IMPORT
SIG · OBJECT
O
object
otherrustv0.39.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Object
use object::Object;

Parses an object file and prints its architecture.

use object::Object; use std::fs; let data = fs::read("binary.o").unwrap(); let obj = object::File::parse(&*data).unwrap(); println!("Architecture: {:?}", obj.architecture());
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.39.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Amazon
1
Resources
object — cargo add object · libregistry