1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-04 00:54:07 +02:00

rewrite derive macro

This commit is contained in:
Robin Appelman 2023-09-12 22:30:45 +02:00
commit 3852f09dd5
21 changed files with 1548 additions and 840 deletions

View file

@ -12,10 +12,11 @@ name = "bitbuffer_derive"
proc-macro = true
[dependencies]
syn = "1.0"
quote = "1.0"
proc-macro2 = "1.0"
syn_util = "0.4"
syn = { version = "2.0.22", features = ["extra-traits"] }
quote = "1.0.29"
proc-macro2 = "1.0.63"
structmeta = "0.2.0"
merge = "0.1.0"
[dev-dependencies]
bitbuffer = { version = "0.10", path = ".." }