mirror of
https://codeberg.org/icewind/bitbuffer.git
synced 2026-06-04 00:54:07 +02:00
add derive macro for Read
This commit is contained in:
parent
523f7a3253
commit
8a19225d61
8 changed files with 251 additions and 5 deletions
20
bitstream_reader_derive/Cargo.toml
Normal file
20
bitstream_reader_derive/Cargo.toml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
[package]
|
||||
name = "bitstream_reader_derive"
|
||||
version = "0.3.0"
|
||||
authors = ["Robin Appelman <robin@icewind.nl>"]
|
||||
edition = "2018"
|
||||
description = "Reading bit sequences from a byte slice"
|
||||
license = "MIT OR Apache-2.0"
|
||||
repository = "https://github.com/icewind1991/bitstream_reader"
|
||||
|
||||
[lib]
|
||||
name = "bitstream_reader_derive"
|
||||
proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
syn = "0.15"
|
||||
quote = "0.6"
|
||||
proc-macro2 = "0.4"
|
||||
|
||||
[dev-dependencies]
|
||||
bitstream_reader = { path = ".." }
|
||||
Loading…
Add table
Add a link
Reference in a new issue