big updates v1 rc1

This commit is contained in:
davidon-top 2023-10-06 21:51:59 +02:00
parent 503f52b60a
commit 48b1ffeb99
11 changed files with 387 additions and 101 deletions

18
macros/Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "binf_macros"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "A crate that adds utilities for dealing with binary flags"
authors = ["DavidOnTop <me@davidon.top>"]
readme = "../README.md"
repository = "https://github.com/D0A1V2I3D/binf"
documentation = "https://docs.rs/binf_macros/"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.68"
quote = "1.0.33"
syn = { version = "2.0.38", features = ["full"] }