#binary-file-parser #standard #value #primitive #binary-data

app parsebin

An very simple tool to parse binary data and print primitive values to standard out

3 releases

0.1.3 Jun 30, 2025
0.1.2 Jun 28, 2025
0.1.1 Aug 6, 2024
0.1.0 Aug 6, 2024

#682 in Parser implementations

Download history

163 downloads per month

Apache-2.0

17KB
352 lines

parsebin

A very simple CLI tool to read and parse binary file and print values as primitive type to standard output.

The tool can be used in conjunction with other tools to process, filter and plot via commandline.

Usage

parsebin <file> <type>
parsebin -h
Usage: parsebin.exe [OPTIONS] <TYPE> <FILE>

Arguments:
  <TYPE>  [possible values: u8, u16, u32, u64, i8, i16, i32, i64, f32, f64]
  <FILE>

Options:
  -o, --offset <OFFSET>          [default: 0]
  -n, --number <NUMBER>          [default: 9223372036854775807]
  -b, --byte-order <BYTE_ORDER>  [default: little-endian] [possible values: little-endian, big-endian]
  -h, --help                     Print help

Installation

cargo install parsebin

Dependencies

~1–1.5MB
~27K SLoC