binary-util

A panic-free binary utility crate to read/write binary streams over the wire.

BinaryUtils provides the following features:

Getting Started

Binary Utils is available on crates.io, add the following to your Cargo.toml:

toml [dependencies] binary_util = "0.3.0"

Optionally, if you wish to remove the derive feature, you can add the following to your Cargo.toml:

toml [dependencies] binary_util = { version = "0.3.0", default-features = false }

To explicitly enable derive, you can use:

toml [dependencies] binary_util = { version = "0.3.0", default-features = false, features = ["derive"] }