Adam Gausmann
Adam Gausmann
Do we need to wait for the author on this one? Is there any other outstanding reviews/testing that can be done in the meantime? The requested changes are small and...
I understand why the anchors are added, because it makes it easier to specify exact matches, but I'm not happy with the effect it has when regular expressions are being...
One thing to note: This will cause breakages to crates that make incorrect assumptions about how the regex inputs are handled and do not account for the implicitly-added anchors (such...
Sorry this got stalled, I've added a test case.
Those failures are because of `*` being provided where a regex is expected. That used to be converted to `^*$` which is accepted, it is now being converted to `^(*)$`...
I did some research/analysis on dependent crates in #1783 , which might be useful for determining how much this breaks. The [list of all uses of `|`](https://pastebin.com/cysHCy3L) may be of...
Am late to this thread, just found it while researching CryFS and considering including it in my backup strategy. But I'd just like to mention this, because a lot of...
I'd love to help get this feature completed; though I don't have much experience developing proc macros I've started studying the relevant parts of serde_derive and it doesn't seem too...
Where I'm at now: I've replaced all uses of syn::Meta with the extended version, and it now supports path parsing. The only test failures are UI mismatches due to the...
I'm having second thoughts about exactly specifying the type of values in `MetaNameValue`. It might make more sense to simply store it as a `TokenStream` and have a method like...