No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann 10c04dac3a
Releasing fastforward version 0.32.3-3~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-08-07 10:55:13 +02:00
debian Releasing fastforward version 0.32.3-3~ffwd13+u1. 2026-08-07 10:55:13 +02:00
src Adding upstream version 0.32.3. 2026-07-20 09:33:58 +02:00
.cargo_vcs_info.json Adding upstream version 0.32.3. 2026-07-20 09:33:58 +02:00
Cargo.lock Adding upstream version 0.32.3. 2026-07-20 09:33:58 +02:00
Cargo.toml Adding upstream version 0.32.3. 2026-07-20 09:33:58 +02:00
Cargo.toml.orig Adding upstream version 0.32.3. 2026-07-20 09:33:58 +02:00
CHANGELOG.md Adding upstream version 0.32.3. 2026-07-20 09:33:58 +02:00
LICENSE-APACHE Adding upstream version 0.32.3. 2026-07-20 09:33:58 +02:00
LICENSE-MIT Adding upstream version 0.32.3. 2026-07-20 09:33:58 +02:00
README.md Adding upstream version 0.32.3. 2026-07-20 09:33:58 +02:00

gimli

Build Status Coverage Status

gimli is a library for reading and writing the DWARF debugging format.

  • Zero copy: everything is just a reference to the original input buffer. No copies of the input data get made.

  • Lazy: you can iterate compilation units without parsing their contents. Parse only as many debugging information entry (DIE) trees as you iterate over. gimli also uses DW_AT_sibling references to avoid parsing a DIE's children to find its next sibling, when possible.

  • Cross-platform: gimli makes no assumptions about what kind of object file you're working with. The flipside to that is that it's up to you to provide an ELF loader on Linux or Mach-O loader on macOS.

    • Unsure which object file parser to use? Try the cross-platform object crate. See the gimli-examples crate for usage with gimli.

Install

To add a gimli dependency to your Cargo.toml, run:

$ cargo add gimli

The minimum supported Rust version is:

  • 1.60.0 for the read feature and its dependencies.
  • 1.65.0 for other features.

Documentation

License

Licensed under either of

at your option.

Contribution

See CONTRIBUTING.md for hacking.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.