Émile Fugulin
Émile Fugulin
I would also suggest not using postgres enums as they are very limiting (you can't remove options, reorder, etc). In general it is easier to use a check constraint or...
Any movement on that?
Any movement?
This would be very useful for crate maintainers to be able to have a drop-in replacement for `async-trait` where they can enable/disable dynamic dispatch based on a feature flag.
@psiinon we should talk at some point! I would love to see a zap scanner integration in caido now that we have a full plugin system. Glad you got some...
Related issue https://github.com/async-graphql/async-graphql/issues/1516
I am going to work on a feature flag to revert the removal of `async_trait` since this was clearly a bad move for a lot of people (myself included).
I started to work on it, but the issue really is that the crate trait-variant which should be now the default instead of async-trait is just not up to the...
Yes since it uses the same traits
It is hard to have an API both sync and async, but it is doable if you have traits at the right places with the same primitives. For example diesel...