deluxe has a bug that causes parsing to hiccup with angle brackets. The crate has been unmaintained for at least 2 years, so it does not look like the fix I provided will be included any time soon.
I tried to mitigate this issue by vendoring deluxe including my fix, but that itself is a hacked together fix that broke the CI. In the end, all the work I put into not having to think about macro parsing has totally backfired, and has reduced my willingness to work on this project even more than before.
All the structures will have to be ported to use darling, and I need to think of a way of using AngleBracketedGenericArguments such that I can derive FromMeta on an attribute schema containing it and not have to hand-roll the parsing every time.
deluxehas a bug that causes parsing to hiccup with angle brackets. The crate has been unmaintained for at least 2 years, so it does not look like the fix I provided will be included any time soon.I tried to mitigate this issue by vendoring
deluxeincluding my fix, but that itself is a hacked together fix that broke the CI. In the end, all the work I put into not having to think about macro parsing has totally backfired, and has reduced my willingness to work on this project even more than before.All the structures will have to be ported to use
darling, and I need to think of a way of usingAngleBracketedGenericArgumentssuch that I can deriveFromMetaon an attribute schema containing it and not have to hand-roll the parsing every time.