elf_loader 0.16.0

A no_std-friendly ELF loader and runtime linker for Rust.
Documentation
//! Relocatable-object loading, layout, and export helpers.

mod builder;
mod exports;
mod hash;
pub(crate) mod layout;
mod link;
mod load;
mod section;
mod sections;
mod symbol;

pub(crate) use builder::ObjectBuilder;
pub(crate) use exports::ObjectExports;
pub use hash::CustomHash;
pub use layout::SectionLifetime;
pub use layout::{ObjectSegmentView, SectionGroups};
pub(crate) use layout::{PltGotSection, SectionSegments};
pub(crate) use link::object_relocation_sections;
pub(crate) use section::{section_bytes, section_entries, section_entries_mut};
pub use sections::ObjectSections;
pub(crate) use symbol::ObjectSymbolTable;