feat: implemented deriving for structs of all types

This commit is contained in:
vegowotenks 2025-05-23 17:26:17 +02:00
parent 5af0d4eb2d
commit f52b1b5590
9 changed files with 377 additions and 36 deletions

12
derive_generic/Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[package]
name = "derive_generic"
version = "0.1.0"
edition = "2021"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1"
syn = "2.0"
quote = "1"