#binary-data #endian #byte-reader #le #focusing

byyte

A library for reading and writing binary data, focusing on simplicity

2 releases

Uses new Rust 2024

0.1.1 Jul 1, 2025
0.1.0 Jul 1, 2025

#2 in #le

MIT license

8KB
160 lines

byyte

Byte reading and writing library for Rust.

Crates.io Docs.rs

Example Usage

// Import the `ByteReader` trait from the `le` module for reading bytes with Little Endian.
use byyte::le::ByteReader;

...
let mut cursor = std::io::Cursor::new(data);
cursor.read_u32()?; // Reads a single u32 from the cursor in Little Endian format.
...

No runtime deps