#binary-encoding #binary #leb128 #binary-format #integer #vbyte #codec

binout

The library for binary serialization/deserialization of integers and arrays of integers

5 unstable releases

0.3.0 Oct 2, 2024
0.2.1 Feb 24, 2024
0.2.0 May 19, 2023
0.1.1 Jul 13, 2022
0.1.0 Jul 11, 2022

#1773 in Encoding

Download history 3620/week @ 2024-11-26 4339/week @ 2024-12-03 4117/week @ 2024-12-10 2679/week @ 2024-12-17 1376/week @ 2024-12-24 2024/week @ 2024-12-31 3573/week @ 2025-01-07 3670/week @ 2025-01-14 4040/week @ 2025-01-21 3395/week @ 2025-01-28 3830/week @ 2025-02-04 3702/week @ 2025-02-11 3589/week @ 2025-02-18 3094/week @ 2025-02-25 3378/week @ 2025-03-04 3047/week @ 2025-03-11

13,685 downloads per month
Used in 16 crates (5 directly)

MIT/Apache

16KB
267 lines

binout is the Rust library by Piotr Beling for low-level, portable, bytes-oriented, binary encoding, decoding, serialization, deserialization of integers and arrays of integers.

It supports slightly improved VByte/LEB128 format (see VByte) as well as simple, little-endian, as-is serialization (see AsIs).

Example

use binout::{VByte, Serializer};

let value = 123456u64;
let mut buff = Vec::new();
assert!(VByte::write(&mut buff, value).is_ok());
assert_eq!(buff.len(), VByte::size(value));
let read: u64 = VByte::read(&mut &buff[..]).unwrap();
assert_eq!(read, value);

No runtime deps