Matthew Pomes
Matthew Pomes
This is more complicated that it seems on the surface. I don't think it's appropriate for `FromParam` to allow access to shared state or any other part of the request....
I too am in favor. The `from_param` method isn't async, so @Tortoaster 's code example actually doesn't work. This could be handled by making `from_param` async, which I think is...
Can you check what version of sqlx you're using? I would assume that the macros re-exported from Rocket may be from a different version of sqlx. Otherwise, it's quite possible...
It looks like `rocket_db_pools` depends on 0.5. Does downgrading to 0.5.0 break it? You may be best off setting the version to `*`, since it should then select the version...
My best guess is that both the route and main tasks are getting assigned to the same thread, and as such block each other. Although Rocket spawns a task to...
In most cases, FromForm & FromData can be implemented generically for this `Authenticated`, with a few minor issues. First - the implementation can (and should) forward the actual work to...
While certainly possible, this would require some significant changes to the routes macro, since it would need to mount two routes for every GET route. The current solution also extends...
I have finsished my implementation of Phoenix like channels, using a `ChannelDescriptor` trait, as outlined above. I have not yet written a derive macro for it, but I don't expect...
I've done some work on this, and I will be adding it soon. I'm also going to be updating the top message to make it better match the current plan.
I think the Rocket side has a more-or-less completed API. There are only a few changes I want to make, which should be fairly minor. However, the client library has...