Registry / utility / xmas-elf

xmas-elf

JSON →
library0.10.0rscratesunverified

Library for parsing and navigating ELF data; zero-allocation, type-safe.

# Cargo.toml [dependencies] xmas-elf = "0.10.0"
INSTALL
IMPORT
SIG · XMAS-ELF
X
xmas-elf
utilityrustv0.10.0
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.

ElfFile
use xmas_elf::ElfFile;

Parse an ELF binary and read its entry point.

use xmas_elf::ElfFile; use std::fs; fn main() { let data = fs::read("/bin/ls").unwrap(); let elf = ElfFile::new(&data).unwrap(); println!("Entry point: {:#x}", elf.header.pt2.entry_point()); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.10.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
11 hits · last 30 days
node
10
Resources
xmas-elf — cargo add xmas-elf · libregistry