binary_sv2 5.0.0

Sv2 data format
Documentation

binary-sv2

crates.io docs.rs rustc+ license

binary-sv2 is a Rust no-std crate that helps encode and decode binary data into Stratum V2 messages

Key Capabilities

  • Protocol-Specific Types: Supports fixed and dynamically-sized SV2 types.
  • Optimized Memory Use: Supports buffer pooling to enhance memory efficiency.

Sv2 Type Mapping

The crate supports the following mappings between Rust and SV2 types

Rust Type Sv2 Type
bool BOOL
u8 U8
u16 U16
U24 U24
u32 U32
u64 U64
f32 F32
Str0255 STRO_255
Signature SIGNATURE
[u8] BYTES
Seq0255 SEQ0_255[T]
Seq064K SEQ0_64K[T]

Features

  • prop_test: Adds property testing support.
  • with_buffer_pool: Optimizes memory usage during encoding.

Usage

To include this crate in your project, run:

cargo add binary-sv2