| Crates.io | tasru |
| lib.rs | tasru |
| version | 0.3.13 |
| created_at | 2024-12-13 02:59:17.30304+00 |
| updated_at | 2025-08-22 02:23:21.490825+00 |
| description | A method to map and understand dwarf symbol information |
| homepage | |
| repository | https://github.com/xobs/tasru |
| max_upload_size | |
| id | 1481857 |
| size | 171,007 |
Tasru allows for easy inspection of Elf binaries using Dwarf debug information.
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);