bitread 0.1.9

The bitread library in Rust is designed to efficiently convert small binary data into Rust structs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "bitread"
version = "0.1.9"
edition = "2021"
license = "MIT"
description = "The bitread library in Rust is designed to efficiently convert small binary data into Rust structs"
documentation = "https://docs.rs/bitread"
repository = "https://github.com/tpisto/bitread"

[workspace]
members = [
    "bitread_macro",
]

[dependencies]
bitread_macro = { path = "bitread_macro", version = "0.1.7" }
bitvec = "1.0.1"