| Crates.io | byyte |
| lib.rs | byyte |
| version | 0.1.1 |
| created_at | 2025-07-01 14:44:17.408376+00 |
| updated_at | 2025-07-01 23:58:56.604351+00 |
| description | A library for reading and writing binary data, focusing on simplicity. |
| homepage | |
| repository | https://github.com/techwritescode/mobi-rs |
| max_upload_size | |
| id | 1733283 |
| size | 7,261 |
Byte reading and writing library for Rust.
// 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.
...