1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-03 16:44:06 +02:00

add derive macro for Read

This commit is contained in:
Robin Appelman 2019-02-27 23:53:17 +01:00
commit 8a19225d61
8 changed files with 251 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "bitstream_reader"
version = "0.2.0"
version = "0.3.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
description = "Reading bit sequences from a byte slice"
@ -8,4 +8,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/icewind1991/bitstream_reader"
[dependencies]
num-traits = "0.2"
num-traits = "0.2"
bitstream_reader_derive = { version = "0.3", path = "bitstream_reader_derive" }
[workspace]