Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nrc/leb128
- Owner: nrc
- Created: 2015-12-27T00:26:57.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-24T21:47:46.000Z (almost 9 years ago)
- Last Synced: 2024-04-30T15:41:29.037Z (7 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 9
- Watchers: 3
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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.