elf_loader 0.14.0

A high-performance, no_std compliant ELF loader and JIT linker for Rust.
Documentation
1
2
3
4
5
6
7
8
9
mod core;
mod dynamic;
mod symbol;

pub(crate) use core::CoreInner;
pub(crate) use dynamic::{DynamicImage, DynamicInfo};

pub use core::{ElfCore, ElfCoreRef, LoadedCore};
pub use symbol::Symbol;