Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nrc/leb128

Implementation of LEB128 encoding in Rust
https://github.com/nrc/leb128

Last synced: 17 days ago
JSON representation

Implementation of LEB128 encoding in Rust

Awesome Lists containing this project

README

        

# leb128

Rust library for handling integers encoded with LEB128.

LEB128 is a variable length encoding for signed and unsigned integers. It is
used in the DWARF debugging format and the Dalvik Executable format (.dex) for
Android.

See [wikipedia](https://en.wikipedia.org/wiki/LEB128) for explanations and references.