1
0
Fork 0
mirror of https://codeberg.org/icewind/vbsp.git synced 2026-06-03 18:54:05 +02:00

derive macros for entity parsing

This commit is contained in:
Robin Appelman 2022-02-27 17:40:01 +01:00
commit 6ced393424
7 changed files with 384 additions and 158 deletions

21
derive/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "vbsp-derive"
version = "0.1.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
homepage = "https://github.com/icewind1991/vbsp"
repository = "https://github.com/icewind1991/vbsp"
description = "Derive macros used by vbsp."
license = "MIT"
edition = "2021"
[lib]
proc-macro = true
[dependencies]
syn = "1.0.82"
quote = "1.0.10"
proc-macro2 = "1.0.33"
syn_util = "0.4.2"
[features]
__vbsp_as_self = []