[go: up one dir, main page]

gimli 0.2.0

A zero-copy DWARF debugging format parser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A parser for the DWARF debugging information format.
//!
//! This library targets the fourth edition of the standard (the most recent, at
//! time of writing).
//!
//! TODO FITZGEN: example usage here!

#![deny(missing_docs)]

extern crate byteorder;
extern crate leb128;

mod parser;
pub use parser::*;