tasru

Crates.iotasru
lib.rstasru
version0.3.13
created_at2024-12-13 02:59:17.30304+00
updated_at2025-08-22 02:23:21.490825+00
descriptionA method to map and understand dwarf symbol information
homepage
repositoryhttps://github.com/xobs/tasru
max_upload_size
id1481857
size171,007
Sean Cross (xobs)

documentation

README

Tasru: Map out dwarf binaries

Tasru allows for easy inspection of Elf binaries using Dwarf debug information.

Example usage

let debug_info = tasru::DebugInfo::new("file.elf")?;
let var_value = debug_info.variable_from_demangled_name("package::GLOBAL_VAR")?.base_type().to_u32()?;
println!("Var value: {}", var_value);
Commit count: 40

cargo fmt